Content deleted Content added
Brandenads (talk | contribs) Added a bash script that will simulate the visual appearance of CHARGEN. |
Brandenads (talk | contribs) →Visual Output Simulation: capitalization |
||
Line 129:
== Visual Output Simulation ==
For security reasons, most modern machines should have both
strg=""; for n in {32..126}; do c=`printf '%x' $n | xxd -r -p`; strg=${strg}${c}; done; strg=${strg}${strg}; n=0; while :; do m=n%95; echo "${strg:m:72}"; n=$((n+1)); sleep .1; done;
|