mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-30 07:39:42 +02:00
11 lines
206 B
Bash
Executable File
11 lines
206 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for (( i = 0; i < ${SCRIPT_INPUT_FILE_COUNT}; i++ ))
|
|
do
|
|
in="$(eval echo \${SCRIPT_INPUT_FILE_${i}})"
|
|
out="$(eval echo \${SCRIPT_OUTPUT_FILE_${i}})"
|
|
cp -pPR "${in}" "${out}"
|
|
done
|
|
|
|
exit 0
|