diff options
author | 2003-07-29 07:32:45 +0000 | |
---|---|---|
committer | 2003-07-29 07:32:45 +0000 | |
commit | dc4967fcd708a0e22347234b3115182c5b81691b (patch) | |
tree | 57ed62b6e40ec87eb9d14fd1335772e47af39525 | |
parent | Check cat, not pipin when deciding whether or not to make use (diff) | |
download | wireguard-openbsd-dc4967fcd708a0e22347234b3115182c5b81691b.tar.xz wireguard-openbsd-dc4967fcd708a0e22347234b3115182c5b81691b.zip |
A new, BSD licensed version of the zforce(1) script.
ok millert@ deraadt@
-rw-r--r-- | usr.bin/compress/zforce | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/usr.bin/compress/zforce b/usr.bin/compress/zforce new file mode 100644 index 00000000000..fb3cd6d4e0a --- /dev/null +++ b/usr.bin/compress/zforce @@ -0,0 +1,52 @@ +#!/bin/sh - +# +# $OpenBSD: zforce,v 1.1 2003/07/29 07:32:45 otto Exp $ +# +# Copyright (c) 2003 Otto Moerbeek <otto@drijf.net> +# +# Permission to use, copy, modify, and distribute this software for any +# purpose with or without fee is hereby granted, provided that the above +# copyright notice and this permission notice appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +# +prog=`basename $0` +USAGE="usage: $prog file ..." +if test $# -eq 0; then + echo $USAGE + exit 1 +fi + +ret=0 + +while test $# -ne 0; do + case "$1" in + *[._-]gz) + shift + ;; + *.t[ag]z) + shift + ;; + *) + if file "$1" | + grep -q "gzip compressed data" 2> /dev/null + then + n="$1".gz + if mv "$1" "$n" 2> /dev/null; then + echo "$1" -- renamed to "$n" + else + ret=1 + echo $prog: cannot rename "$1" to "$n" + fi + fi + shift + ;; + esac +done +exit $ret |