diff options
-rw-r--r-- | README.rdoc | 84 |
1 files changed, 45 insertions, 39 deletions
diff --git a/README.rdoc b/README.rdoc index 62d8363..f75d480 100644 --- a/README.rdoc +++ b/README.rdoc @@ -1,39 +1,45 @@ -#
-# hl command :
-# ~~~~~~~~~~~~
-#
-# This command uses regcomp() and regexec() to colorize (highlight) strings from stdin
-# using options on the command line.
-#
-# Usage :
-#
-# Usage: hl [-h|eidDR][-E][-rgybmcw] regexp
-# -h : help
-# -v : version
-# -u : do not bufferize output on stdout
-# -e : extended regular expressions
-# -i : ignore case
-# -E : print on stderr
-# -r : red
-# -g : green
-# -y : yellow
-# -b : blue
-# -m : magenta
-# -c : cyan
-# -w : white
-# -R : reverse video
-# -d : debug
-# -D : display regular expressions
-#
-#
-# Example :
-#
-#
-#
-# /sbin/ifconfig -a hl -ei -m '^(eth|(vir)?br|vnet)[0-9.]*:[0-9]+\>' \
-# -b '^(eth|(vir)?br|vnet)[0-9.]*\.[0-9]+\>' \
-# -c '([0-9a-f]{2}:){5}[0-9a-f]{2}' \
-# -g '\<UP\>|\<RUNNING\>|([0-9]{1,3}\.){3}[0-9]{1,3}\>' \
-# -y '^(eth|(vir)?br|vnet)[0-9.:]*\>'
-#
-#
+# +# hl command : +# ~~~~~~~~~~~~ +# +# This command uses regcomp() and regexec() to colorize (highlight) strings from stdin +# using options on the command line. +# +# Usage : +# +# hl: version 1.20 +# Usage: hl [-h|-eidD][-E][-rgybmcwRGYBMCW] regexp ... +# -h : help +# -v : version +# -u : do not bufferize output on stdout +# -e : extended regular expressions +# -i : ignore case +# -E : print on stderr +# -r : red +# -g : green +# -y : yellow +# -b : blue +# -m : magenta +# -c : cyan +# -w : white +# -R : red (reverse video) +# -G : green (reverse video) +# -Y : yellow (reverse video) +# -B : blue (reverse video) +# -M : magenta (reverse video) +# -C : cyan (reverse video) +# -W : white (reverse video) +# -d : debug +# -D : display regular expressions +# +# Example : +# +# +# +# /sbin/ifconfig -a hl -ei -m '^(eth|(vir)?br|vnet)[0-9.]*:[0-9]+\>' \ +# -b '^(eth|(vir)?br|vnet)[0-9.]*\.[0-9]+\>' \ +# -c '([0-9a-f]{2}:){5}[0-9a-f]{2}' \ +# -g '\<UP\>|\<RUNNING\>|([0-9]{1,3}\.){3}[0-9]{1,3}\>' \ +# -y '^(eth|(vir)?br|vnet)[0-9.:]*\>' +# +# |