The Lurker's Guide to Babylon 5
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
- #!/bin/sh
- cd credits
- if [ -f $1 ]; then
- ./gen.py $1
- fi
- cd ../guide
- if [ -f $1 ]; then
- ./gen.py $1
- fi
- cd ../synops
- if [ -f $1 ]; then
- ./gen.py $1
- fi
- cd ../background
- ./gen.py $1
|