1
0
Fork 0
mirror of https://github.com/9fans/plan9port.git synced 2025-01-30 11:54:57 +00:00
plan9port/bin/u

24 lines
222 B
Text
Raw Normal View History

2005-03-06 18:06:12 +00:00
#!/bin/sh
case "$PLAN9" in
'')
;;
*)
PATH=`
echo "$PATH" |
sed '
s,'$PLAN9/bin:',,g
s,':$PLAN9/bin',,g
'
`
PATH="$PATH:$PLAN9/bin"
export PATH
;;
esac
case $# in
[1-9]*)
exec "$@"
;;
esac