aboutsummaryrefslogtreecommitdiff
path: root/scripts/undeb
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-12-12 16:49:12 +0000
committerEric Andersen <andersen@codepoet.org>2000-12-12 16:49:12 +0000
commit5ec241d3b38054c72735ff448dd1f9bebce78d3d (patch)
treecf53bd1b2c40e9a0ce52cb9c6c4053b410ad93f4 /scripts/undeb
parent2d6282bb37a4051e5beb10c70e1fb862eddeae1d (diff)
downloadbusybox-w32-5ec241d3b38054c72735ff448dd1f9bebce78d3d.tar.gz
busybox-w32-5ec241d3b38054c72735ff448dd1f9bebce78d3d.tar.bz2
busybox-w32-5ec241d3b38054c72735ff448dd1f9bebce78d3d.zip
Script updates for better portability
Diffstat (limited to 'scripts/undeb')
-rw-r--r--scripts/undeb12
1 files changed, 8 insertions, 4 deletions
diff --git a/scripts/undeb b/scripts/undeb
index fa2bcb34c..a72e1e2ba 100644
--- a/scripts/undeb
+++ b/scripts/undeb
@@ -1,5 +1,9 @@
1#!/bin/sh 1#!/bin/sh
2# 2#
3# This should work with the GNU version of tar and gzip!
4# This should work with the bash or ash shell!
5# Requires the programs (ar, tar, gzip, and the pager more or less).
6#
3usage() { 7usage() {
4echo "Usage: undeb -c package.deb <Print control file info>" 8echo "Usage: undeb -c package.deb <Print control file info>"
5echo " undeb -l package.deb <List contents of deb package>" 9echo " undeb -l package.deb <List contents of deb package>"
@@ -25,12 +29,12 @@ elif [ "$1" = "-l" ]; then
25exist 29exist
26type more >/dev/null 2>&1 && pager=more 30type more >/dev/null 2>&1 && pager=more
27type less >/dev/null 2>&1 && pager=less 31type less >/dev/null 2>&1 && pager=less
28trap "" 13 32[ "$pager" = "" ] && echo "No pager found!" && exit
29(ar -p $deb control.tar.gz | gunzip -c | tar -x -O control ; echo -e "\nPress enter to scroll, q to Quit!\n" ; ar -p $deb data.tar.gz | gunzip -c | tar -t -v 2>/dev/null) | $pager 33(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
30exit 34exit
31elif [ "$1" = "-c" ]; then 35elif [ "$1" = "-c" ]; then
32exist 36exist
33ar -p $deb control.tar.gz | gunzip -c | tar -x -O control 37ar -p $deb control.tar.gz | tar -xzO *control
34exit 38exit
35elif [ "$1" = "-x" ]; then 39elif [ "$1" = "-x" ]; then
36exist 40exist
@@ -40,7 +44,7 @@ elif [ ! -d "$3" ]; then
40echo "No such directory $3!" 44echo "No such directory $3!"
41exit 45exit
42fi 46fi
43ar -p $deb data.tar.gz | gunzip | (cd $3 ; tar -x -v -f -) || exit 47ar -p $deb data.tar.gz | tar -xzvpf - -C $3 || exit
44echo 48echo
45echo "Extracted $deb to $3!" 49echo "Extracted $deb to $3!"
46exit 50exit