mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2024-11-27 20:40:24 +01:00
13 lines
160 B
Bash
Executable File
13 lines
160 B
Bash
Executable File
#!/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 |