grep (find text in files)Searches one or more files for text that matches regular expressions. The grep command is described in Chapter 7.Format: grep pattern filelist Examples: grep "^Table [0-9]:" * Displays each line that matches the regex. The filename and line number is listed.
|