8 lines
89 B
Bash
8 lines
89 B
Bash
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
shift
|
||
|
for file in "$@"; do
|
||
|
cp -f "${file}" "${TARGET_DIR}/root/"
|
||
|
done
|