diff options
Diffstat (limited to '')
-rwxr-xr-x | doc/rat-cursors/to-text | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/rat-cursors/to-text b/doc/rat-cursors/to-text index 998159b..9bdcd7d 100755 --- a/doc/rat-cursors/to-text +++ b/doc/rat-cursors/to-text @@ -1,10 +1,13 @@ #!/bin/sh -data="$(sed 's/\(.\) /\1\1/g' | sed 's/\./ /g' | sed 's/@/X/g' | sed 's/ \+$//g')" +data="$(sed 's/\(.\) /\1\1/g' | sed 's/\./ /g' | sed 's/O/#/g' | sed 's/ \+$//g')" while [ $(echo "${data}" | grep -v '^ ' | grep -v '^$' | wc -l) = 0 ]; do data="$(echo "${data}" | sed 's/^ //')" done -echo "${data}" +while [ "$(echo "${data}" | sed 1q)" = "" ]; do + data="$(echo "${data}" | sed 1d)" +done +echo "${data}" |