diff options
author | rsc <devnull@localhost> | 2005-07-27 20:18:28 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2005-07-27 20:18:28 +0000 |
commit | 3fc9d8848430fe72937b268f930896b5ec6f7513 (patch) | |
tree | a553f0fd6c6a68f7511dcd650e97de9042e6ed7d | |
parent | 28169890e2b33cbf0d99be5a5db74b1f6713ddf8 (diff) | |
download | plan9port-3fc9d8848430fe72937b268f930896b5ec6f7513.tar.gz plan9port-3fc9d8848430fe72937b268f930896b5ec6f7513.tar.bz2 plan9port-3fc9d8848430fe72937b268f930896b5ec6f7513.zip |
better awd for sunos
-rwxr-xr-x | bin/awd | 3 | ||||
-rwxr-xr-x | bin/g | 2 |
2 files changed, 3 insertions, 2 deletions
@@ -14,7 +14,8 @@ case $# in sys=$1 ;; 0) - sys=`hostname -s` + # hostname -s sets the hostname to "-s" on Solaris + sys=`hostname |sed 's/\..*//'` ;; *) usage @@ -31,7 +31,7 @@ case $# in 1) pattern="$1" files=`/bin/ls *.[bcChlmy] *.cc *.lx *.py *.tex *.ms *.java *.xy 2>/dev/null | - 9 grep -v '\.tabx?\.[ch]$'` + 9 grep -v '\.tabx?\.[ch]$|^[xyz]\.'` ;; *) pattern="$1" |