tv0c.sh - neatvi - [fork] simple vi-type editor with UTF-8 support
HTML git clone git://src.adamsgaard.dk/neatvi
DIR Log
DIR Files
DIR Refs
DIR README
---
tv0c.sh (186B)
---
1 # vi commands
2 echo ":e $1"
3 printf "iabc def ghi"
4 echo "?abc"
5 printf "i1"
6 echo "/ghi"
7 printf "i2"
8 echo ":w"
9 echo ":q"
10
11 # the expected output
12 echo "1abc def 2ghi" >&2