tv0a.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
       ---
       tv0a.sh (213B)
       ---
            1 # vi commands
            2 echo    ":e $1"
            3 printf        "iabc"
            4 printf        "o"
            5 printf        "odef "
            6 printf        "oghi."
            7 printf        "ojkl"
            8 printf        "1G5J"
            9 printf        "i^"
           10 echo    ":w"
           11 echo    ":q"
           12 
           13 # the expected output
           14 echo    "abc def ghi.^  jkl" >&2