You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/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 |