Overview
Comment: | Prints usage line |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
5b1df24ff4aadeec74a2e1e0a791f386 |
User & Date: | gawthrop@users.sourceforge.net on 2000-10-03 12:17:58 |
Other Links: | branch diff | manifest | tags |
Context
2000-10-03
| ||
18:29:26 | crs now works after a fashion check-in: a883b1697f user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
12:17:58 | Prints usage line check-in: 5b1df24ff4 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
12:15:45 | Initial revision check-in: 06a52a4b68 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt_backups from [2260c28117] to [91abddd29d].
1 2 3 4 5 6 7 | #!/bin/sh # Does a backup with date of all mtt components mtt_backup $1 mtt_backup $1 lib mtt_backup $1 doc | > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 | #!/bin/sh # Does a backup with date of all mtt components # $Log$ if [ -z "$1" ]; then echo "Usage: mtt_backups [-v|-d]" exit fi mtt_backup $1 mtt_backup $1 lib mtt_backup $1 doc |