• Feeling swamped by data?
  • grep == 'global regular expression print'
  • grep PATTERN FILE
  • find all lines with the pattern cheese
    grep cheese /etc/passwd
  • find administrative accounts in /etc/passwd
    grep :0 /etc/passwd
  • find all lines which do NOT contain jeremy
    grep -v jeremy /etc/passwd
  • NEXT
    PREVIOUS
    Master Index