Skip to content

Commit

Permalink
Didn't realise the patch from issue 1 also included a case-insensitiv…
Browse files Browse the repository at this point in the history
…e option.

--HG--
extra : convert_revision : svn%3Aa4405340-9a3f-0410-a3d8-31b31f83d5c0/trunk%4016
  • Loading branch information
boards committed Jan 2, 2010
1 parent bb0a558 commit fe7cec8
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions psgrep
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ Options:
-o <opts> Search using custom ps output format
-i Ignore case in searches
-e Use extended regexps (egrep)
-i Use case-insensitive regexps (grep -i)
-p Use perl regexps (grep -P)
-h View this message
-v View version information"
Expand Down Expand Up @@ -69,7 +68,6 @@ while getopts "nablso:iephv" opt; do
o) PS_OPTS="-eo $OPTARG";;
i) GREP_CMD="${GREP_CMD} -i";;
e) GREP_CMD="${GREP_CMD} -E";;
i) GREP_CMD="${GREP_CMD} -i";;
p) GREP_CMD="${GREP_CMD} -P";;
esac
done
Expand Down

0 comments on commit fe7cec8

Please sign in to comment.