Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

grep not match

Just filter your output with:
grep -v "excluded_pattern"
Example to get all not txt files in current directory.
ls | grep -v .txt
 
PREVIOUS NEXT
Tagged: #grep #match
ADD COMMENT
Topic
Name
9+9 =