okular/kdvi
Simon Hausmann 7bb7b6dd4f - let the shell expand the arguments, if necessary
-kviewshell dvi "$params"
+kviewshell dvi $params

svn path=/trunk/kdegraphics/kdvi/; revision=95202
2001-05-04 21:16:41 +00:00

17 lines
377 B
Bash
Executable file

#!/bin/sh
# Strips -paper option which kviewshell currently does not understand;
# that way it can be used from LyX: Just edit ~/.lyx/lyxrc and change
# \view_dvi_command "xdvi"
# to
# \view_dvi_command "kdvi"
params=""
while test $# -gt 0; do
case "$1" in
-paper) shift;; # strip -paper option
*) params="$params $1";;
esac
shift
done
kviewshell dvi $params