diff options
author | stanley lieber <stanley.lieber@gmail.com> | 2012-07-30 10:58:17 -0500 |
---|---|---|
committer | stanley lieber <stanley.lieber@gmail.com> | 2012-07-30 10:58:17 -0500 |
commit | 75aeefd3966895eb3cbba18bba87909c4c1d66d9 (patch) | |
tree | d496b83c62830156478536b20c1dcf9d5d27847c /rc/bin/9fs | |
parent | fcc5e75d07e5bc6cb3ddac6d9a437e7ec62d0d95 (diff) | |
download | plan9front-75aeefd3966895eb3cbba18bba87909c4c1d66d9.tar.xz |
/rc/bin/9fs: add partition argument for 9fat
Diffstat (limited to 'rc/bin/9fs')
-rwxr-xr-x | rc/bin/9fs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/rc/bin/9fs b/rc/bin/9fs index 8f38872e8..7216eae6a 100755 --- a/rc/bin/9fs +++ b/rc/bin/9fs @@ -7,7 +7,10 @@ case '' echo usage: 9fs service '[mountpoint]' >[1=2] exit usage case 9fat - part=`{ls /dev/fs/9fat /dev/sd*/9fat >[2]/dev/null} + if(~ $#2 1) + part=`{ls $2 >[2]/dev/null} + if not + part=`{ls /dev/fs/9fat /dev/sd*/9fat >[2]/dev/null} if(~ $#part 0) { echo 'no 9fat partition found' >[1=2] exit no.9fat |