diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2008-03-19 14:47:00 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2008-03-19 14:47:00 +0000 |
commit | 43e0cf0679692d491cfc84d79fabdf31f2f6c175 (patch) | |
tree | 83b653337b4911d9e94ce54584367e0f0abeb16e /gnu/usr.bin/cvs/examples/unwrap | |
parent | 76fd2245b5dc6793b57cc7c3bf4fc6af7a352563 (diff) |
Notes
Diffstat (limited to 'gnu/usr.bin/cvs/examples/unwrap')
-rw-r--r-- | gnu/usr.bin/cvs/examples/unwrap | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/gnu/usr.bin/cvs/examples/unwrap b/gnu/usr.bin/cvs/examples/unwrap deleted file mode 100644 index def05610f5513..0000000000000 --- a/gnu/usr.bin/cvs/examples/unwrap +++ /dev/null @@ -1,21 +0,0 @@ -#! /bin/sh -# -# unwrap - extract the combined package (created with wrap) -# -#ident "@(#)cvs/examples:$Name: $:$Id: unwrap,v 1.1 1995/11/14 23:20:30 woods Exp $" - -# move the file to a new name with an extension -rm -rf $1.cvswrap -mv $1 $1.cvswrap - -# untar the file - -if `gzip -t $1.cvswrap > /dev/null 2>&1` -then - gzcat -d $1.cvswrap | gnutar --preserve --sparse -x -f - -else - gnutar --preserve --sparse -x -f $1.cvswrap -fi - -# remove the original -rm -rf $1.cvswrap |