mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-08 22:27:53 +00: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
|