15 lines
196 B
Plaintext
Executable File
15 lines
196 B
Plaintext
Executable File
|
|
# $1 - root@192.168.0.5
|
|
# $2 - ../out/build/am64xx_Debug/PeaceTrueNetConnector
|
|
|
|
|
|
ssh $1 <<END_SCRIPT
|
|
|
|
cd /home/root/
|
|
chmod 777 $(basename "$2")
|
|
|
|
gdbserver :5000 $(basename "$2")
|
|
exit
|
|
|
|
END_SCRIPT
|