diff options
author | David Walter Seikel | 2016-03-28 22:28:34 +1000 |
---|---|---|
committer | David Walter Seikel | 2016-03-28 22:28:34 +1000 |
commit | 7028cbe09c688437910a25623098762bf0fa592d (patch) | |
tree | 10b5af58277d9880380c2251f109325542c4e6eb /src/others/irrlicht-1.8.1/source/Irrlicht/bzip2/bzgrep.1 | |
parent | Move lemon to the src/others directory. (diff) | |
download | SledjHamr-7028cbe09c688437910a25623098762bf0fa592d.zip SledjHamr-7028cbe09c688437910a25623098762bf0fa592d.tar.gz SledjHamr-7028cbe09c688437910a25623098762bf0fa592d.tar.bz2 SledjHamr-7028cbe09c688437910a25623098762bf0fa592d.tar.xz |
Move Irrlicht to src/others.
Diffstat (limited to 'src/others/irrlicht-1.8.1/source/Irrlicht/bzip2/bzgrep.1')
-rw-r--r-- | src/others/irrlicht-1.8.1/source/Irrlicht/bzip2/bzgrep.1 | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/src/others/irrlicht-1.8.1/source/Irrlicht/bzip2/bzgrep.1 b/src/others/irrlicht-1.8.1/source/Irrlicht/bzip2/bzgrep.1 new file mode 100644 index 0000000..930af8c --- /dev/null +++ b/src/others/irrlicht-1.8.1/source/Irrlicht/bzip2/bzgrep.1 | |||
@@ -0,0 +1,56 @@ | |||
1 | \"Shamelessly copied from zmore.1 by Philippe Troin <phil@fifi.org> | ||
2 | \"for Debian GNU/Linux | ||
3 | .TH BZGREP 1 | ||
4 | .SH NAME | ||
5 | bzgrep, bzfgrep, bzegrep \- search possibly bzip2 compressed files for a regular expression | ||
6 | .SH SYNOPSIS | ||
7 | .B bzgrep | ||
8 | [ grep_options ] | ||
9 | .BI [\ -e\ ] " pattern" | ||
10 | .IR filename ".\|.\|." | ||
11 | .br | ||
12 | .B bzegrep | ||
13 | [ egrep_options ] | ||
14 | .BI [\ -e\ ] " pattern" | ||
15 | .IR filename ".\|.\|." | ||
16 | .br | ||
17 | .B bzfgrep | ||
18 | [ fgrep_options ] | ||
19 | .BI [\ -e\ ] " pattern" | ||
20 | .IR filename ".\|.\|." | ||
21 | .SH DESCRIPTION | ||
22 | .IR Bzgrep | ||
23 | is used to invoke the | ||
24 | .I grep | ||
25 | on bzip2-compressed files. All options specified are passed directly to | ||
26 | .I grep. | ||
27 | If no file is specified, then the standard input is decompressed | ||
28 | if necessary and fed to grep. | ||
29 | Otherwise the given files are uncompressed if necessary and fed to | ||
30 | .I grep. | ||
31 | .PP | ||
32 | If | ||
33 | .I bzgrep | ||
34 | is invoked as | ||
35 | .I bzegrep | ||
36 | or | ||
37 | .I bzfgrep | ||
38 | then | ||
39 | .I egrep | ||
40 | or | ||
41 | .I fgrep | ||
42 | is used instead of | ||
43 | .I grep. | ||
44 | If the GREP environment variable is set, | ||
45 | .I bzgrep | ||
46 | uses it as the | ||
47 | .I grep | ||
48 | program to be invoked. For example: | ||
49 | |||
50 | for sh: GREP=fgrep bzgrep string files | ||
51 | for csh: (setenv GREP fgrep; bzgrep string files) | ||
52 | .SH AUTHOR | ||
53 | Charles Levert (charles@comm.polymtl.ca). Adapted to bzip2 by Philippe | ||
54 | Troin <phil@fifi.org> for Debian GNU/Linux. | ||
55 | .SH "SEE ALSO" | ||
56 | grep(1), egrep(1), fgrep(1), bzdiff(1), bzmore(1), bzless(1), bzip2(1) | ||