example usecase added with shuf

This commit is contained in:
ickyicky 2021-07-11 02:34:53 +02:00
parent 7cf3df20e1
commit 4d5f869fb3

View file

@ -19,6 +19,10 @@ Program also allows user to pipe text into it. Keep in mind, it only supports sp
`furtune | sed 's/\t/ /g' | python3 -m fasttyper`
or if you want to randomize words from given file with shuf, and then keep them in the same line, replacing new lines with spaces using sed, on for example all disctionaries in system:
`shuf -n5 /usr/share/dict/* | sed ':a;N;$!ba;s/\n/ /g' | python -m fasttyper`
# Known issues
Too large text brakes the app.