diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-12-12 16:49:12 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-12-12 16:49:12 +0000 |
commit | 5ec241d3b38054c72735ff448dd1f9bebce78d3d (patch) | |
tree | cf53bd1b2c40e9a0ce52cb9c6c4053b410ad93f4 /examples | |
parent | 2d6282bb37a4051e5beb10c70e1fb862eddeae1d (diff) | |
download | busybox-w32-5ec241d3b38054c72735ff448dd1f9bebce78d3d.tar.gz busybox-w32-5ec241d3b38054c72735ff448dd1f9bebce78d3d.tar.bz2 busybox-w32-5ec241d3b38054c72735ff448dd1f9bebce78d3d.zip |
Script updates for better portability
Diffstat (limited to 'examples')
-rw-r--r-- | examples/undeb | 12 | ||||
-rw-r--r-- | examples/unrpm | 9 |
2 files changed, 15 insertions, 6 deletions
diff --git a/examples/undeb b/examples/undeb index fa2bcb34c..a72e1e2ba 100644 --- a/examples/undeb +++ b/examples/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 | # | ||
3 | usage() { | 7 | usage() { |
4 | echo "Usage: undeb -c package.deb <Print control file info>" | 8 | echo "Usage: undeb -c package.deb <Print control file info>" |
5 | echo " undeb -l package.deb <List contents of deb package>" | 9 | echo " undeb -l package.deb <List contents of deb package>" |
@@ -25,12 +29,12 @@ elif [ "$1" = "-l" ]; then | |||
25 | exist | 29 | exist |
26 | type more >/dev/null 2>&1 && pager=more | 30 | type more >/dev/null 2>&1 && pager=more |
27 | type less >/dev/null 2>&1 && pager=less | 31 | type less >/dev/null 2>&1 && pager=less |
28 | trap "" 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 |
30 | exit | 34 | exit |
31 | elif [ "$1" = "-c" ]; then | 35 | elif [ "$1" = "-c" ]; then |
32 | exist | 36 | exist |
33 | ar -p $deb control.tar.gz | gunzip -c | tar -x -O control | 37 | ar -p $deb control.tar.gz | tar -xzO *control |
34 | exit | 38 | exit |
35 | elif [ "$1" = "-x" ]; then | 39 | elif [ "$1" = "-x" ]; then |
36 | exist | 40 | exist |
@@ -40,7 +44,7 @@ elif [ ! -d "$3" ]; then | |||
40 | echo "No such directory $3!" | 44 | echo "No such directory $3!" |
41 | exit | 45 | exit |
42 | fi | 46 | fi |
43 | ar -p $deb data.tar.gz | gunzip | (cd $3 ; tar -x -v -f -) || exit | 47 | ar -p $deb data.tar.gz | tar -xzvpf - -C $3 || exit |
44 | echo | 48 | echo |
45 | echo "Extracted $deb to $3!" | 49 | echo "Extracted $deb to $3!" |
46 | exit | 50 | exit |
diff --git a/examples/unrpm b/examples/unrpm index 2cd1aa9c9..9ab37be0a 100644 --- a/examples/unrpm +++ b/examples/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 |