I have a binary "crackme" which i want to try all ASCII characters as parameters, here's what i've done so far.
#!/bin/bash
for ((i=32;i<127;i++))
do
c="\\$(printf %03o "$i")";
echo $c;
./crackme $c;
done
The command executed is "./crackme \65" and obviously i'm trying to execute "./crackme A".