diff options
-rwxr-xr-x | lsinitramfs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lsinitramfs b/lsinitramfs index 3f67381..e395de8 100755 --- a/lsinitramfs +++ b/lsinitramfs @@ -17,7 +17,7 @@ if [ "$1" = "-h" ] || [ "$1" = "--help" ] ; then exit 0 fi -for i in "$*" ; do +for i in "$@" ; do if ! [ -r "$i" ] ; then echo "Specified file could not be read." >&2 exit 1 |