8 lines
105 B
Bash
Executable file
8 lines
105 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
path_input=$1
|
|
path_output=$2
|
|
|
|
cp ${path_input} ${path_output}
|
|
chmod +x ${path_output}
|