home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
sh-utils-1.12-src.tgz
/
tar.out
/
fsf
/
sh-utils
/
src
/
true.sh
< prev
next >
Wrap
Linux/UNIX/POSIX Shell Script
|
1996-09-28
|
324b
|
22 lines
#!/bin/sh
usage="Usage: $0 [OPTION]...
--help display this help and exit
--version output version information and exit"
case $# in
1 )
case "z${1}" in
z--help )
echo "$usage"; exit 0 ;;
z--version )
echo "true - @VERSION@"; exit 0 ;;
* ) ;;
esac
;;
* ) ;;
esac
exit 0