tv01.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
---
tv01.sh (165B)
---
1 #!/bin/sh
2
3 # vi commands
4 echo ":e $1"
5 printf "iabc"
6 printf "hhA def"
7 printf "Ighi "
8 echo ":w"
9 echo ":q"
10
11 # the expected output
12 echo "ghi abc def" >&2