scripts

Utilitity scripts
git clone git://gtms.dev:scripts
Log | Files | Refs

openhtml (127B)


      1 #!/bin/sh
      2 
      3 tmpfile=$(mktemp --suffix=.html)
      4 cat $1 > $tmpfile
      5 $BROWSER --new-window $tmpfile >> /dev/null
      6 sleep 1
      7 rm $tmpfile
      8