To get all lines not beginning with a tab, do
grep -vP "^\t" abc.txt
-P turns on Perl-style regex (otherwise tab cannot be specified as \t). "^\t" matches lines beginning with a tab. -v inverts the selection.
For most cases though, using -E (extended regex) instead of -P works, and is better supported.
grep -vP "^\t" abc.txt
-P turns on Perl-style regex (otherwise tab cannot be specified as \t). "^\t" matches lines beginning with a tab. -v inverts the selection.
For most cases though, using -E (extended regex) instead of -P works, and is better supported.
No comments:
Post a Comment