home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
sh-utils-1.12-bin.lha
/
bin
/
true
< prev
next >
Wrap
Text File
|
1996-10-12
|
332b
|
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 - GNU sh-utils 1.12"; exit 0 ;;
* ) ;;
esac
;;
* ) ;;
esac
exit 0