Friday, June 24, 2011

display all lines starting without a character

grep -vE ^' ' temp ==> display all lines in temp starting without a space.
grep -vE ^x temp ==> display all lines in temp, not starting with space