Added script for sending generated executable to device via ftbrony and ftp.

This commit is contained in:
archshift 2014-11-23 15:41:40 -08:00
parent 01370ae607
commit 7c6d02014c

17
send-exec.sh Executable file
View File

@ -0,0 +1,17 @@
#!/bin/bash
### TO USE:
#### Open ftbrony on your test device
#### Change host/port combination
#### Run the script
HOST=192.168.xx.xx
PORT=5000
ftp -n ftp://$HOST:$PORT <<END_SCRIPT
cd /3ds
put citra-hwtests.3dsx
quit
END_SCRIPT
exit 0