cgrep 6.5.1 → 6.5.2
raw patch · 4 files changed
+9/−10 lines, 4 files
Files
- README.md +4/−5
- cgrep.cabal +1/−1
- src/CmdOptions.hs +3/−3
- src/Config.hs +1/−1
README.md view
@@ -4,7 +4,7 @@ Usage ----- -Cgrep 6.5.1 Usage: cgrep [OPTION] [PATTERN] files...+Cgrep 6.5.2 Usage: cgrep [OPTION] [PATTERN] files... cgrep [OPTIONS] [ITEM] @@ -66,9 +66,9 @@ Concurrency: -j --jobs=INT Number of jobs- --cores=INT Set number of physical processor used- --chunk=INT Set per-job chunk length- -a --asynch Process chunk of files asynchronously+ --cores=INT Number of physical processors utilized+ --chunk=INT Specify the length of chunks+ -a --asynch Process chunks asynchronously Miscellaneous: @@ -76,5 +76,4 @@ -n --no-turbo disable turbo mode -? --help Display help message -V --version Print version information-
cgrep.cabal view
@@ -1,6 +1,6 @@ Name: cgrep Description: Cgrep: a context-aware grep for source codes-Version: 6.5.1+Version: 6.5.2 Synopsis: Command line tool Homepage: http://awgn.github.io/cgrep/ License: GPL-2
src/CmdOptions.hs view
@@ -64,9 +64,9 @@ , json = False &= help "Format output as json object" &= explicit &= name "json" , xml = False &= help "Format output as xml document" &= explicit &= name "xml" , jobs = 1 &= groupname "\nConcurrency" &= help "Number of jobs"- , cores = 0 &= help "Set number of physical processor used"- , chunk = 16 &= help "Set per-job chunk length"- , asynch = False &= help "Process chunk of files asynchronously"+ , cores = 0 &= help "Number of physical processors utilized"+ , chunk = 16 &= help "Specify the length of chunks"+ , asynch = False &= help "Process chunks asynchronously" , debug = 0 &= groupname "\nMiscellaneous" &= help "Debug level: 1, 2 or 3" , no_turbo = False &= help "Disable turbo mode" , others = [] &= args
src/Config.hs view
@@ -31,7 +31,7 @@ cgreprc = "cgreprc" version :: String-version = "6.5.1"+version = "6.5.2" data Config = Config