mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-18 00:21:25 +01:00
13 lines
346 B
Bash
13 lines
346 B
Bash
#!/bin/sh
|
|
# $Id: extract_src.sh,v 1.2 1995/01/27 07:49:46 jkh Exp $
|
|
PATH=/stand:$PATH
|
|
DDIR=/
|
|
|
|
for DIST in base srcbin etc games gnu include lib libexec release sbin lkm \
|
|
release share sys usrbin usrsbin; do
|
|
if [ -f ${DIST}.aa ]; then
|
|
echo "Extracting ${DIST} sources"
|
|
cat ${DIST}.?? | gzip -c -d | ( cd $DDIR; cpio -H tar -imdu )
|
|
fi
|
|
done
|