diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-12-12 16:49:12 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-12-12 16:49:12 +0000 |
commit | f594b92ba91f3f9057bf18182efc8bc35566c60e (patch) | |
tree | cf53bd1b2c40e9a0ce52cb9c6c4053b410ad93f4 /scripts/unrpm | |
parent | 035a4502143e924fd987b7e9b32ca9cb887c1971 (diff) | |
download | busybox-w32-f594b92ba91f3f9057bf18182efc8bc35566c60e.tar.gz busybox-w32-f594b92ba91f3f9057bf18182efc8bc35566c60e.tar.bz2 busybox-w32-f594b92ba91f3f9057bf18182efc8bc35566c60e.zip |
Script updates for better portability
git-svn-id: svn://busybox.net/trunk/busybox@1430 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'scripts/unrpm')
-rw-r--r-- | scripts/unrpm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/scripts/unrpm b/scripts/unrpm index 2cd1aa9c9..9ab37be0a 100644 --- a/scripts/unrpm +++ b/scripts/unrpm | |||
@@ -1,5 +1,9 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | # | 2 | # |
3 | # This should work with the GNU version of cpio and gzip! | ||
4 | # This should work with the bash or ash shell! | ||
5 | # Requires the programs (cpio, gzip, and the pager more or less). | ||
6 | # | ||
3 | usage() { | 7 | usage() { |
4 | echo "Usage: unrpm -l package.rpm <List contents of rpm package>" | 8 | echo "Usage: unrpm -l package.rpm <List contents of rpm package>" |
5 | echo " unrpm -x package.rpm /foo/boo <Extract rpm package to this directory," | 9 | echo " unrpm -x package.rpm /foo/boo <Extract rpm package to this directory," |
@@ -24,7 +28,8 @@ elif [ "$1" = "-l" ]; then | |||
24 | exist | 28 | exist |
25 | type more >/dev/null 2>&1 && pager=more | 29 | type more >/dev/null 2>&1 && pager=more |
26 | type less >/dev/null 2>&1 && pager=less | 30 | type less >/dev/null 2>&1 && pager=less |
27 | (echo -e "\nPress enter to scroll, q to Quit!\n" ; rpmunpack < $rpm | gunzip -c | cpio -tvf --quiet) | $pager | 31 | [ "$pager" = "" ] && echo "No pager found!" && exit |
32 | (echo -e "\nPress enter to scroll, q to Quit!\n" ; rpmunpack < $rpm | gzip -dc | cpio -tv --quiet) | $pager | ||
28 | exit | 33 | exit |
29 | elif [ "$1" = "-x" ]; then | 34 | elif [ "$1" = "-x" ]; then |
30 | exist | 35 | exist |
@@ -34,7 +39,7 @@ elif [ ! -d "$3" ]; then | |||
34 | echo "No such directory $3!" | 39 | echo "No such directory $3!" |
35 | exit | 40 | exit |
36 | fi | 41 | fi |
37 | rpmunpack < $rpm | gunzip | (cd $3 ; cpio -idmuv) || exit | 42 | rpmunpack < $rpm | gzip -d | (umask 0 ; cd $3 ; cpio -idmuv) || exit |
38 | echo | 43 | echo |
39 | echo "Extracted $rpm to $3!" | 44 | echo "Extracted $rpm to $3!" |
40 | exit | 45 | exit |