From 7824a1204bbb34d7450e22d7d4938c1f07f626b5 Mon Sep 17 00:00:00 2001 From: Andreas Gruenbacher Date: Thu, 12 May 2005 13:03:59 +0000 Subject: - Quoting fix from Jean Delvare , and one more from me. --- scripts/inspect.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'scripts') diff --git a/scripts/inspect.in b/scripts/inspect.in index b32a8b4..f3fb648 100644 --- a/scripts/inspect.in +++ b/scripts/inspect.in @@ -65,19 +65,19 @@ do [ -f "$file" ] || continue echo -n "." >&4 echo "md5sum < $file" >&2 - set -- $(md5sum < $file) + set -- $(md5sum < "$file") echo "$1 $file" - case "$(file -b $file)" in + case "$(file -b "$file")" in compress*|gzip*) echo -n "g" >&4 echo "md5sum < <(gzip -cd $file)" >&2 - set -- $(gzip -cd $file | md5sum) + set -- $(gzip -cd "$file" | md5sum) echo "$1 $file" ;; bzip2*) echo -n "b" >&4 echo "md5sum < <(bzip2 -cd $file)" >&2 - set -- $(bzip2 -cd $file | md5sum) + set -- $(bzip2 -cd "$file" | md5sum) echo "$1 $file" ;; esac -- cgit