Skip to content

Instantly share code, notes, and snippets.

@sabind
Created May 8, 2014 21:29
Show Gist options
  • Select an option

  • Save sabind/be9f4dfe9cc975f5594e to your computer and use it in GitHub Desktop.

Select an option

Save sabind/be9f4dfe9cc975f5594e to your computer and use it in GitHub Desktop.
Compress files by reading in matchers or names as arg array
shopt -s nullglob
echo "$@"
for f in "$@"
do
echo "$f"
gzip -c "$f" > "$f.gz"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment