plan9port/bin/awd

32 lines
317 B
Text
Raw Permalink Normal View History

2004-03-25 23:03:22 +00:00
#!/bin/sh
2005-01-30 16:28:53 +00:00
usage() {
echo 'usage: awd [label]' 1>&2
exit 1
}
case $# in
1)
case "$1" in
-*)
usage
;;
esac
sys=$1
;;
0)
2005-07-27 20:18:28 +00:00
# hostname -s sets the hostname to "-s" on Solaris
sys=${sysname:-$(hostname |sed 's/\..*//')}
2005-01-30 16:28:53 +00:00
;;
*)
usage
esac
p="`pwd`"
case "$p" in
*/)
label $p-$sys
;;
*)
label $p/-$sys
esac