gvxhelp.txt
来自「GSview 4.6 PostScript previewer。Ghostscr」· 文本 代码 · 共 29 行
TXT
29 行
#!/bin/sh
# This script runs the GSview help
# $1 is the help file name
# $2 is the topic name
if [ -z "$1" ]
then
echo "Usage: $0 URL [TAG]"
echo " URL: The URL to open"
echo " TAG: The anchor at that url"
exit 1
fi
if [ -z "$2" ]
then
TAG=''
else
TAG="#$2"
fi
if mozilla -remote openFile\(file://$1$TAG\) ; then
exit 0
else
mozilla file://$1$TAG
fi
exit 0
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?