From 678f0d07128f2c2b4e186ead1a472063f7211b13 Mon Sep 17 00:00:00 2001 From: ickyicky Date: Sun, 11 Jul 2021 02:37:18 +0200 Subject: [PATCH] awk easier for ppl --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e6e1fc9..eaa9fa3 100644 --- a/README.md +++ b/README.md @@ -19,9 +19,9 @@ 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: +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 awk, on for example all disctionaries in system: -`shuf -n5 /usr/share/dict/* | sed ':a;N;$!ba;s/\n/ /g' | python -m fasttyper` +`shuf -n5 /usr/share/dict/* | awk 1 ORS=' ' | python -m fasttyper` # Known issues