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