What happens if you make an infinite amount of typos in one place? Example: the Khmer word for Thursday ថ្ងៃព្រហស្បតិ៍. Somebody may not be sure whether it's written without the tondakheat at the end like ថ្ងៃព្រហស្បតិ or with. So they think "the more the better" and err on the safe side and put an infinite amount of tondakheats there.
I wrote a script that generates 2.4 Gbps of tondakheats:
#!/bin/bash
echo -n "ថ្ងៃព្រហស្បតិ៍"
while true; do
yes "៍៍" \
| LC_ALL=C tr -d '\n'
done
When I run it on a terminal, the context switch load of the system increases from 3 kHz to 33 kHz and it starts to stutter. Sounds healthy.
#typo #infinite #infinity #khmer #khmerlanguage #thursday #script #linux #scheduler









