URI: 
       tv07.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
       ---
       tv07.sh (208B)
       ---
            1 # vi commands
            2 echo    ":e $1"
            3 printf        "iabc"
            4 printf        "odef"
            5 printf        '1Gyy'
            6 printf        'pGp'
            7 echo    ":w"
            8 echo    ":q"
            9 
           10 # the expected output
           11 echo    "abc" >&2
           12 echo    "abc" >&2
           13 echo    "def" >&2
           14 echo    "abc" >&2