Sophie

Sophie

distrib > Mandriva > 2009.0 > i586 > by-pkgid > 336fde03ebd82afa309b51dbda1609de > files > 10

nettee-0.1.8-2mdv2008.1.i586.rpm

#!/bin/bash
#
# example of a SAVE_LOCAL script for use with pdist_file.sh
# The single input parameter is mandatory!
#
# This one moves to a directory and does a gunzip then detar
# on the input stream.
# 
# David Mathog, mathog@caltech.edu, 21-MAR-2005
#
if [ ! -d $1 ]
then
  echo "FATAL error, LSPARAM is not a directory!"
  exit
fi
cd $1
gunzip -c | tar -xf - 
exit