switched around the pattern and the dir.
authorChris Koeritz <fred@gruntose.com>
Wed, 27 Mar 2013 19:40:41 +0000 (15:40 -0400)
committerChris Koeritz <fred@gruntose.com>
Wed, 27 Mar 2013 19:40:41 +0000 (15:40 -0400)
scripts/archival/find_in_arch.sh

index f8c2b63d2ffddb6feda12858b87e6c8f53434d6d..999a7fbe13da9b704d617613caab7798e811c9ed 100644 (file)
 # scours through the archive files (tar, zip, etc) in a directory looking for a pattern
 # in the file.  any matches are reported.
 
-dir="$1"; shift
 pattern="$1"; shift
+dir="$1"; shift
 
 if [ -z "$dir" -o -z "$pattern" ]; then
-  echo This utility requires a directory to scan for archives, and a pattern to
-  echo look for within each archive.  Any matches are reported.
+  echo This utility requires a pattern string that will be sought within a
+  echo directory, and the directory to scan.  Any matches are reported.
   exit 1
 fi