htmlview.sh 142 B

123456789
  1. #!/bin/sh
  2. # htmlview compat script
  3. if [ $# -gt 0 ]; then
  4. exec /usr/bin/xdg-open "$@"
  5. else
  6. exec /usr/bin/xdg-open http://vinelinux.org/
  7. fi