]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
"env grep" - add options to grep in name, value, or both.
authorWolfgang Denk <wd@denx.de>
Sat, 23 Mar 2013 23:50:30 +0000 (23:50 +0000)
committerTom Rini <trini@ti.com>
Wed, 1 May 2013 20:24:00 +0000 (16:24 -0400)
commitd87244d5af58cbc2d9cc3f5314648deb7810f10a
tree661c93ff4d5fd1ea8fc093527117bb354d28fa74
parent5a31ea04c9ee5544fbb70ad7597ea4b294840eab
"env grep" - add options to grep in name, value, or both.

Add options to "env grep" command:

-n : search only the envrironment variable names
-v : search only their values
-b : search both names and values (= default)

An option "--" will stop parsing options, so to print variables that
contain the striing "- " please use:

env grep -- "- "

Or to print all environment varioables which have a '-' in their name,
use:

env grep -n -- -

Signed-off-by: Wolfgang Denk <wd@denx.de>
common/cmd_nvedit.c