]>
git.zerfleddert.de Git - proxmark3-svn/blob - client/gen_pm3mfsim_script.sh
3 # Andrei Costin <zveriu@gmail.com>, 2011
4 # gen_pm3mfsim_script.sh
5 # Generates Mifare Classic emulation script file that will load a given EML dump into PM3 and start emulation automagically
7 # http://www.linuxquestions.org/questions/programming-9/bash-script-parsing-optional-parameters-621728/
14 echo "${0##/} input_eml_without_extension output.pm3scr"
18 # Minimum number of arguments needed by this program
21 # get the number of command-line arguments given
24 # check to make sure enough arguments were given or exit
25 if [[ $ARGC -lt $MINARGS ]] ; then
26 echo "Too few arguments given (Minimum:$MINARGS)"
32 echo "hf mf eclr" >> $2
33 echo "hf mf eload" $1 >> $2
34 echo "hf mf ekeyprn" >> $2
35 echo "hf mf sim" `cat $1.eml | (read -n 8 uid; echo $uid)` >> $2