mirror of
https://github.com/simple64/simple64.git
synced 2026-07-27 17:04:09 +02:00
9 lines
273 B
Bash
Executable File
9 lines
273 B
Bash
Executable File
#!/bin/bash
|
|
|
|
RSP_FUZZ="$1"
|
|
|
|
adb push "$RSP_FUZZ" /data/local/tmp/rsp-vu-fuzzer >/dev/null || exit 1
|
|
adb shell chmod +x /data/local/tmp/rsp-vu-fuzzer >/dev/null || exit 1
|
|
adb shell /data/local/tmp/rsp-vu-fuzzer || exit 1
|
|
adb shell rm /data/local/tmp/rsp-vu-fuzzer || exit 1
|