diff options
author | Jim Meyering <jim@meyering.net> | 2000-11-06 08:55:34 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-11-06 08:55:34 +0000 |
commit | f00f8f6a9c52cced434aad8ba394476efe730c1a (patch) | |
tree | 0aa990c7a823aedecdd846651e7e93f23d051359 /tests/rwx-to-mode | |
parent | f472159d99a50062a1e24fb54512bc8a9277f295 (diff) | |
download | coreutils-f00f8f6a9c52cced434aad8ba394476efe730c1a.tar.xz |
*** empty log message ***
Diffstat (limited to 'tests/rwx-to-mode')
-rwxr-xr-x | tests/rwx-to-mode | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/rwx-to-mode b/tests/rwx-to-mode index 52bb5d155..39e1500b9 100755 --- a/tests/rwx-to-mode +++ b/tests/rwx-to-mode @@ -5,8 +5,16 @@ # FIXME: handle special bits, too. +case $# in + 1) ;; + *) echo "$0: wrong number of arguments" 1>&2 + echo "Usage: $0 ls-style-mode-string" 1>&2 + exit 1;; +esac + rwx=$1 u=`echo $rwx|sed 's/^.\(...\).*/\1/;s/-//g'` g=`echo $rwx|sed 's/^....\(...\).*/\1/;s/-//g'` o=`echo $rwx|sed 's/^.......\(...\).*/\1/;s/-//g'` echo "=,u=$u,g=$g,o=$o" +exit 0 |