8 lines
101 B
Bash
Executable file
8 lines
101 B
Bash
Executable file
export PATH=${coreutils}/bin
|
|
mkdir $out
|
|
for src in "$@"
|
|
do
|
|
chmod -R +w $out
|
|
cp -R $src $out
|
|
done
|