start the application. Both scripts perform simple checks to autodetect the proxmark device.
13 lines
223 B
Bash
Executable File
13 lines
223 B
Bash
Executable File
#!/bin/bash
|
|
|
|
function wait4proxmark {
|
|
echo "Waiting for Proxmark to appear..."
|
|
while [ ! -e /dev/ttyACM? ]; do
|
|
sleep .1
|
|
done
|
|
}
|
|
|
|
# start proxmark with first detected interface
|
|
wait4promark
|
|
client/proxmark3 /dev/ttyACM?
|