blob: d375fb83c03ea7146a81bf5c7eca60cc973fb810 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
# this script launches four terminals where
# the website I'm currently working upon is
cd /zt/Docs/web/KEsite/KE-website/
st & st &
cd templates/
st &
cd ../static/css/
st &
|