dotfiles

Unnamed repository; edit this file 'description' to name the repository.
git clone git://git.margiolis.net/dotfiles.git
Log | Files | Refs | README | LICENSE

docprev (223B)


      1 #!/bin/sh
      2 
      3 usage()
      4 {
      5 	echo "usage: ${0##*/} file" 1>&2 && exit 1
      6 }
      7 
      8 test ${#} -eq 0 && usage
      9 base="${1%.*}"
     10 
     11 case "${1}" in
     12 	*.html) setsid -f "${BROWSER}" "${base}.html" ;;
     13 	*.tex) setsid -f xdg-open "${base}.pdf" ;;
     14 esac