mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-15 23:05:49 +01:00
9 lines
193 B
Bash
9 lines
193 B
Bash
|
#!/bin/sh
|
||
|
# $Id: extract.sh,v 1.17 1994/12/04 03:41:18 jkh Exp $
|
||
|
PATH=/stand:$PATH
|
||
|
DDIR=/
|
||
|
|
||
|
DIST=proflibs
|
||
|
echo "Extracting ${DIST}"
|
||
|
cat ${DIST}.?? | gzip -c -d | ( cd $DDIR; cpio -H tar -imdu )
|