6 lines
60 B
Plaintext
6 lines
60 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
echo $1
|
||
|
mkdir -p "`dirname \"$2\"`"
|
||
|
cp "$1" "$2"
|