mirror of
https://github.com/w23/xash3d-fwgs
synced 2024-12-17 14:59:57 +01:00
13 lines
160 B
Bash
13 lines
160 B
Bash
|
#!/bin/sh
|
||
|
out1=$2
|
||
|
shift 2
|
||
|
out=$1
|
||
|
shift 1
|
||
|
|
||
|
echo $* > $out
|
||
|
rm -r $out.files
|
||
|
mkdir $out.files
|
||
|
cp --parents $* $out.files/
|
||
|
echo cp --parents $* $out.files/
|
||
|
|
||
|
#exit 0
|