te02.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
       ---
       te02.sh (184B)
       ---
            1 # vi commands
            2 echo    ":e $1"
            3 echo    ":a"
            4 echo    "abc def"
            5 echo    "ghi jkl"
            6 echo    "."
            7 echo    ":w"
            8 echo    ":q"
            9 
           10 # the expected output
           11 echo    "abc def" >&2
           12 echo    "ghi jkl" >&2