?? usage.pl
字號:
# -*- Perl -*-# $Id: usage.pl,v 1.25.8.3 2001/08/20 13:32:20 baba Exp $# Copyright (C) 1997-1999 Satoru Takabayashi All rights reserved.# Copyright (C) 2000 Namazu Project All rights reserved.# This is free software with ABSOLUTELY NO WARRANTY.## This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either versions 2, or (at your option)# any later version.# # This program is distributed in the hope that it will be useful# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the# GNU General Public License for more details.## You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA# 02111-1307, USA## This file must be encoded in EUC-JP encoding#package usage;require "var.pl";# dummy function.sub N_ { return $_[0];}## To deceive xgettext, add fake "\n\" at the end of each line.# This "\n\" is handled in mknmz's show_usage().#$USAGE = N_("mknmz %s, an indexer of Namazu.\n\\n\Usage: mknmz [options] <target>...\n\\n\Target files:\n\ -a, --all target all files.\n\ -t, --media-type=MTYPE set the media type for all target files to MTYPE.\n\ -h, --mailnews same as --media-type='message/rfc822'\n\ --mhonarc same as --media-type='text/html; x-type=mhonarc'\n\ -F, --target-list=FILE load FILE which contains a list of target files.\n\ --allow=PATTERN set PATTERN for file names which should be allowed.\n\ --deny=PATTERN set PATTERN for file names which should be denied.\n\ --exclude=PATTERN set PATTERN for pathnames which should be excluded.\n\ -e, --robots exclude HTML files containing\n\ <meta name=\"ROBOTS\" content=\"NOINDEX\">\n\ -M, --meta handle HTML meta tags for field-specified search.\n\ -r, --replace=CODE set CODE for replacing URI.\n\ --html-split split an HTML file with <a name=\"...\"> anchors.\n\ --mtime=NUM limit by mtime just like find(1)'s -mtime option.\n\ e.g., -50 for recent 50 days, +50 for older than 50.\n\\n\Morphological Analysis:\n\ -c, --use-chasen use ChaSen for analyzing Japanese.\n\ -k, --use-kakasi use KAKASI for analyzing Japanese.\n\ -m, --use-chasen-noun use ChaSen for extracting only nouns.\n\ -L, --indexing-lang=LANG index with language specific processing.\n\\n\Text Operations:\n\ -E, --no-edge-symbol remove symbols on edge of word.\n\ -G, --no-okurigana remove Okurigana in word.\n\ -H, --no-hiragana ignore words consist of Hiragana only.\n\ -K, --no-symbol remove symbols.\n\\n\Summarization:\n\ -U, --no-encode-uri do not encode URI.\n\ -x, --no-heading-summary do not make summary with HTML's headings.\n\\n\Index Construction:\n\ --update=INDEX set INDEX for updating.\n\ -Y, --no-delete do not detect removed documents.\n\ -Z, --no-update do not detect update and deleted documents.\n\\n\Miscellaneous:\n\ -s, --checkpoint turn on the checkpoint mechanism.\n\ -C, --show-config show the current configuration.\n\ -f, --config=FILE use FILE as a config file.\n\ -I, --include=FILE include your customization FILE.\n\ -O, --output-dir=DIR set DIR to output the index.\n\ -T, --template-dir=DIR set DIR having NMZ.{head,foot,body}.*.\n\ -q, --quiet suppress status messages during execution.\n\ -v, --version show the version of namazu and exit.\n\ -V, --verbose be verbose.\n\ --debug be debug mode.\n\ --help show this help and exit.\n\\n\Report bugs to <%s>.\n\");#### Version information##$VERSION_INFO = <<EOFversion;mknmz of Namazu $var::VERSION$var::COPYRIGHTThis is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warrantyof MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See theGNU General Public License for more details.EOFversion1;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -