mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-03-02 14:32:10 +00:00
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
|