aboutsummaryrefslogtreecommitdiff
path: root/examples/unrpm
diff options
context:
space:
mode:
Diffstat (limited to 'examples/unrpm')
-rw-r--r--examples/unrpm9
1 files changed, 7 insertions, 2 deletions
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#
3usage() { 7usage() {
4echo "Usage: unrpm -l package.rpm <List contents of rpm package>" 8echo "Usage: unrpm -l package.rpm <List contents of rpm package>"
5echo " unrpm -x package.rpm /foo/boo <Extract rpm package to this directory," 9echo " unrpm -x package.rpm /foo/boo <Extract rpm package to this directory,"
@@ -24,7 +28,8 @@ elif [ "$1" = "-l" ]; then
24exist 28exist
25type more >/dev/null 2>&1 && pager=more 29type more >/dev/null 2>&1 && pager=more
26type less >/dev/null 2>&1 && pager=less 30type 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
28exit 33exit
29elif [ "$1" = "-x" ]; then 34elif [ "$1" = "-x" ]; then
30exist 35exist
@@ -34,7 +39,7 @@ elif [ ! -d "$3" ]; then
34echo "No such directory $3!" 39echo "No such directory $3!"
35exit 40exit
36fi 41fi
37rpmunpack < $rpm | gunzip | (cd $3 ; cpio -idmuv) || exit 42rpmunpack < $rpm | gzip -d | (umask 0 ; cd $3 ; cpio -idmuv) || exit
38echo 43echo
39echo "Extracted $rpm to $3!" 44echo "Extracted $rpm to $3!"
40exit 45exit