mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
25 lines
376 B
Bash
Executable File
25 lines
376 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ "$#" < 2 ]]; then
|
|
echo "usage: scp_upload.sh SRC1 [SRC2 ...] DEST"
|
|
exit
|
|
fi
|
|
|
|
echo "Uploading..."
|
|
|
|
# Get last argument
|
|
for last; do true; done
|
|
|
|
# Go through source files and push them one by one.
|
|
i=0
|
|
for arg
|
|
do
|
|
if [[ $((i+1)) == "$#" ]]; then
|
|
break
|
|
fi
|
|
# echo "Pushing $arg to $last"
|
|
#adb push $arg $last
|
|
scp $arg pi@px4autopilot:$last
|
|
((i+=1))
|
|
done
|