mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-25 12:02:12 +00:00
8 lines
89 B
Bash
Executable File
8 lines
89 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
shift
|
|
for file in "$@"; do
|
|
cp -f "${file}" "${TARGET_DIR}/root/"
|
|
done
|