tv21.sh - neatvi - [fork] simple vi-type editor with UTF-8 support
(HTM) git clone git://src.adamsgaard.dk/neatvi
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
---
tv21.sh (147B)
---
1 # vi commands
2 echo ":e $1"
3 echo "i"
4 echo "oa"
5 echo ":%s/$/x/g"
6 echo ":wq"
7
8 # the expected output
9 echo "x" >&2
10 echo "ax" >&2