mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 08:38:13 -05:00
8 lines
197 B
Bash
8 lines
197 B
Bash
#!/bin/sh
|
|
# $Id: extract.sh,v 1.17 1994/12/04 03:41:18 jkh Exp $
|
|
PATH=/stand:$PATH
|
|
DDIR=/
|
|
|
|
DIST=compat1x_tgz
|
|
echo "Extracting ${DIST}"
|
|
cat ${DIST}.?? | gzip -c -d | ( cd $DDIR; cpio -H tar -imdu )
|