URI: 
       xterm - localbin - leot's localbin (~/bin)
  HTML hg clone https://bitbucket.org/iamleot/localbin
   DIR Log
   DIR Files
   DIR Refs
       ---
       xterm
       ---
            1 #!/bin/sh
            2 
            3 #
            4 # Invoke st as xterm if available, falling back to xterm.
            5 #
            6 
            7 if [ -x /usr/pkg/bin/st ]; then
            8         exec /usr/pkg/bin/st "$@"
            9 fi
           10 
           11 exec /usr/X11R7/bin/xterm "$@"