Missing Digit by

while read line;do for((i=0; i<10; i++));do echo $line | grep $i>/dev/null;if [ $? != 0 ];then echo $i;break;fi;done;done

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page