copy-sample-script-to-target.sh 89 B

1234567
  1. #!/bin/sh
  2. set -e
  3. shift
  4. for file in "$@"; do
  5. cp -f "${file}" "${TARGET_DIR}/root/"
  6. done