xref
: /
OK3568_Linux_fs
/
buildroot
/
support
/
testing
/
tests
/
package
/
copy-sample-script-to-target.sh
(revision 4882a59341e53eb6f0b4789bf948001014eff981)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
#!/
bin
/
sh
2
set
-e
3
4
shift
5
for
file
in
"$@"
;
do
6
cp
-f
"${file}" "${TARGET_DIR}/root/"
7
done
8