作者: Bunta
日時: 2005/3/03(01:30)
 Bruce.さん、bug fixをふくめ、本当にありがとうございます。m(__)m

 まず、時差ボケ、感謝レスです。

 Yagrepですか。いいっすよ。聞いたことないので、もう安心して
即c:\binへコピーして、何の不都合もなく動いてくれました。

>yagrep -o -E "あ+"
ああいうえおあああ	;入力
ああ
あああ

 デフォは、SJISですね。
 よーし。それでは、perlの正規表現について勉強しよう! 
 いつになることやら…。


 (どうでもいいことなんですし、ただ助かっているだけなのですが、1行目の
コマンド行を打ったあと、 ALT+ 全半で、ちゃんと dosime が立ち上がり、入力
ができる。僕は、Dos窓では atok8 と暮らしているのですが、でも、command.
com でなく、直接の cmd.exe  の支配下の状況=この場面がまさしくそれ、にな
ると、dos 16bit FEP である atok は駄目になる。するとどこからともなく WXP
もどきの dosime が現れてくれる。 普段は、config.nt->config.vz  で dosime
を rem って殺してあるのに、です。…。何か変な感じですね。)

-----------------------------------------------

-w, -x bug fixによせて。

 すいません、何が直ったのか確認できませんでした。

 まず、宣伝(すごいですよ!)

C:\>yagrep --help
Usage: yagrep [OPTION]... PATTERN [FILE] ...
Search for PATTERN in each FILE or standard input.
Example: yagrep -i 'hello world' menu.h main.c

Regexp selection and interpretation:
  -E, --extended-regexp     PATTERN is an extended regular expression
  -F, --fixed-strings       PATTERN is a set of newline-separated strings
  -G, --basic-regexp        PATTERN is a basic regular expression
  -P, --perl-regexp         PATTERN is a Perl regular expression
  -e, --regexp=PATTERN      use PATTERN as a regular expression
  -f, --file=FILE           obtain PATTERN from FILE
  -i, --ignore-case         ignore case distinctions
  -w, --word-regexp         force PATTERN to match only whole words
  -x, --line-regexp         force PATTERN to match only whole lines
  -z, --null-data           a data line ends in 0 byte, not newline

Miscellaneous:
  -s, --no-messages         suppress error messages
  -v, --invert-match        select non-matching lines
  -V, --version             print version information and exit
      --help                display this help and exit
      --mmap                use memory-mapped input if possible

Output control:
  -m, --max-count=NUM       stop after NUM matches
  -b, --byte-offset         print the byte offset with output lines
  -n, --line-number         print line number with output lines
      --line-buffered       flush output on every line
  -H, --with-filename       print the filename for each match
  -h, --no-filename         suppress the prefixing filename on output
      --label=LABEL         print LABEL as filename for standard input
  -o, --only-matching       show only the part of a line matching PATTERN
  -q, --quiet, --silent     suppress all normal output
      --binary-files=TYPE   assume that binary files are TYPE
                            TYPE is 'binary', 'text', or 'without-match'
  -a, --text                equivalent to --binary-files=text
  -I                        equivalent to --binary-files=without-match
  -d, --directories=ACTION  how to handle directories
                            ACTION is 'read', 'recurse', or 'skip'
  -D, --devices=ACTION      how to handle devices, FIFOs and sockets
                            ACTION is 'read' or 'skip'
  -R, -r, --recursive       equivalent to --directories=recurse
      --include=PATTERN     files that match PATTERN will be examined
      --exclude=PATTERN     files that match PATTERN will be skipped.
      --exclude-from=FILE   files that match PATTERN in FILE will be skipped.
  -L, --files-without-match only print FILE names containing no match
  -l, --files-with-matches  only print FILE names containing matches
  -c, --count               only print a count of matching lines per FILE
  -Z, --null                print 0 byte after FILE name

Context control:
  -B, --before-context=NUM  print NUM lines of leading context
  -A, --after-context=NUM   print NUM lines of trailing context
  -C, --context=NUM         print NUM lines of output context
  -NUM                      same as --context=NUM
      --color[=WHEN],
      --colour[=WHEN]       use markers to distinguish the matching string
                            WHEN may be `always', `never' or `auto'.
  -U, --binary              do not strip CR characters at EOL (MSDOS)
  -u, --unix-byte-offsets   report offsets as if CRs were not there (MSDOS)

`egrep' means `grep -E'.  `fgrep' means `grep -F'.
With no FILE, or when FILE is -, read standard input.  If less than
two FILEs given, assume -h.  Exit status is 0 if match, 1 if no match,
and 2 if trouble.

multi-byte extention:
      --ctype=ASCII             force matching in ASCII mode
      --ctype=EUC               force matching in EUC-JP mode
      --ctype=SJIS              force matching in Shift-JIS mode

Report bugs to <bug-gnu-utils@...>.

----------
 そして、オプションの意味の確認(あまり正統的でなさそうな試訳)。

  -w, --word-regexp         force PATTERN to match only whole words
			英単語(word)全体がヒットのときマッチ
  -x, --line-regexp         force PATTERN to match only whole lines
			(論理)行全体がヒットするときのみマッチ

 そして、旧版でのテスト。

>yagrep -P -x -w "greatgreat"
greatgreat
greatgreat

>yagrep -P -x "great"
great
great

>yagrep -P -w "great"
great
great


 うーん。テストがまったく的外れっぽい。とにかく新版に差し替えました。使
えない「おねだり派」で、ほんとうに申し訳ありません。