diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-03-15 08:29:22 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-03-15 08:29:22 +0000 |
commit | c7bda1ce659294d6e22c06e087f6f265983c7578 (patch) | |
tree | 4c6d2217f4d8306c59cf1096f8664e1cfd167213 /examples/undeb | |
parent | 8854004b41065b3d081af7f3df13a100b0c8bfbe (diff) | |
download | busybox-c7bda1ce659294d6e22c06e087f6f265983c7578.tar.gz |
Remove trailing whitespace. Update copyright to include 2004.
Diffstat (limited to 'examples/undeb')
-rw-r--r-- | examples/undeb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/undeb b/examples/undeb index a72e1e2ba..37104e9d8 100644 --- a/examples/undeb +++ b/examples/undeb @@ -8,12 +8,12 @@ usage() { echo "Usage: undeb -c package.deb <Print control file info>" echo " undeb -l package.deb <List contents of deb package>" echo " undeb -x package.deb /foo/boo <Extract deb package to this directory," -echo " put . for current directory>" +echo " put . for current directory>" exit } deb=$2 - + exist() { if [ "$deb" = "" ]; then usage @@ -30,11 +30,11 @@ exist type more >/dev/null 2>&1 && pager=more type less >/dev/null 2>&1 && pager=less [ "$pager" = "" ] && echo "No pager found!" && exit -(ar -p $deb control.tar.gz | tar -xzO *control ; echo -e "\nPress enter to scroll, q to Quit!\n" ; ar -p $deb data.tar.gz | tar -tzv) | $pager +(ar -p $deb control.tar.gz | tar -xzO *control ; echo -e "\nPress enter to scroll, q to Quit!\n" ; ar -p $deb data.tar.gz | tar -tzv) | $pager exit elif [ "$1" = "-c" ]; then exist -ar -p $deb control.tar.gz | tar -xzO *control +ar -p $deb control.tar.gz | tar -xzO *control exit elif [ "$1" = "-x" ]; then exist @@ -44,7 +44,7 @@ elif [ ! -d "$3" ]; then echo "No such directory $3!" exit fi -ar -p $deb data.tar.gz | tar -xzvpf - -C $3 || exit +ar -p $deb data.tar.gz | tar -xzvpf - -C $3 || exit echo echo "Extracted $deb to $3!" exit |