File: gzipall

package info (click to toggle)
rzip 2.1-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, squeeze, wheezy
  • size: 320 kB
  • ctags: 249
  • sloc: ansic: 1,888; sh: 575; makefile: 86
file content (5 lines) | stat: -rwxr-xr-x 54 bytes parent folder | download | duplicates (4)
1
2
3
4
5
#!/bin/sh

for f in $*; do
  gzip -9 < $f > $f.gz
done