ae547a3309
Don't ask user to press return after every dist.
9 lines
225 B
Bash
9 lines
225 B
Bash
#!/bin/sh
|
|
# $Id: extract_games.sh,v 1.1 1995/01/14 07:41:41 jkh Exp $
|
|
PATH=/stand:$PATH
|
|
DDIR=/
|
|
|
|
DIST=games
|
|
echo "Extracting ${DIST} - ignore any errors from cpio"
|
|
cat ${DIST}.?? | gzip -c -d | ( cd $DDIR; cpio -H tar -imdu )
|