Changeset 14606 for documentation
- Timestamp:
- 2007-10-05T11:20:52+13:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
documentation/trunk/manuals/generate-pdf.sh
r13881 r14606 16 16 manuals="Paper User Develop Install" 17 17 18 echo -e "choose a manual to work with: \n 'all' for all the manuals\n 'u' for the User's Guide\n 'd' for the Developer's Guide\n 'i' for the Installer's Guide\n 'p' for From Paper to Collection" 19 read cmd 20 18 if [ "$1" != "" ]; then 19 cmd=$1 20 else 21 echo -e "choose a manual to work with: \n 'all' for all the manuals\n 'u' for the User's Guide\n 'd' for the Developer's Guide\n 'i' for the Installer's Guide\n 'p' for From Paper to Collection" 22 read cmd 23 fi 21 24 22 25 if [ $cmd = 'u' ]; then … … 34 37 35 38 36 echo -e "choose a language to work with: \n all, en, fr, es, or ru" 37 read cmd 38 if [ $cmd != 'all' ]; then 39 langs=$cmd 39 if [ "$2" != "" ]; then 40 langs=$2 41 else 42 echo -e "choose a language to work with: \n all, en, fr, es, or ru" 43 read cmd 44 if [ $cmd != 'all' ]; then 45 langs=$cmd 46 fi 40 47 fi 41 42 48 43 49 for l in $langs; do
Note:
See TracChangeset
for help on using the changeset viewer.