public
Description: Some scripts I have written and tend to keep up to date. They reside in my personal bin folder.
Homepage: http://blog.bogojoker.com
Clone URL: git://github.com/JosephPecoraro/scripts.git
scripts / mgrep-changelog.txt
100644 28 lines (22 sloc) 1.132 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Author: Joseph Pecoraro
 
Version 1.2: Monday July 14, 2008
- added '!' to mean --not. This is the same as awk and maybe others.
 
Version 1.1: Sunday July 13, 2008
- added --quiet option to muffle the filename/line number
- error messages now print on stderr
 
Version 1.0: Thursday March 6, 2008
- added --hidden option to allow scanning of hidden files/directories
- now skips symlinks immediately
- cleaned has been beautified, cleaner handling of files vs. STDIN
 
Version 0.9.9: Tuesday January 29, 2008
- mgrep [options] [-#] ( [-n] regex ) [filenames]
- added the --all option to scan the entire file and check results (instead
  of scanning and having a single line match all the criteria).
- now parses directories, so the filename can be a directory, it will
  recursively check every file under that directory
- code has been uglified, expect it to be cleaned for version 1.0
 
Version 0.9: Saturday January 26, 2008
- mgrep [-#] ( [-n] regex ) [filenames]
- there are no options yet, although this could implement almost
  all of grep or awk's options so I may check that out. As well
  as formatting output differently.