diff options
Diffstat (limited to 'test/aux-fixed/4007.script')
-rwxr-xr-x | test/aux-fixed/4007.script | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/aux-fixed/4007.script b/test/aux-fixed/4007.script new file mode 100755 index 000000000..9cdd098ff --- /dev/null +++ b/test/aux-fixed/4007.script @@ -0,0 +1,22 @@ +#!/bin/sh + +if [ x$1 = "x-o" ] +then + shift + action=$1 + shift +fi + +if [ -r $1 ] +then + echo "scanning file $1" +else + echo "$1 not readable" + exit 1 +fi + +case $action in +accept) ;; +reject) echo "VNAME found in file $1";; +esac + |