×
Past year
  • Any time
  • Past hour
  • Past 24 hours
  • Past week
  • Past month
  • Past year
All results
Feb 29, 2024 · Grep is a Linux command-line tool that allows users to search files for a specified textual pattern. When grep finds a match, it prints lines containing that ...
Apr 17, 2024 · It is used to search text and strings in a given file. In other words, grep command searches the given file for lines containing a match to the given strings or ...
Nov 14, 2023 · The grep command is a useful tool for finding all occurrences of a search term in a selection of files or the output of another command. It can also come in ...
Feb 15, 2024 · The grep command in Unix/Linux is a powerful tool used for searching and manipulating text patterns within files. Its name is derived from the ed (editor) ...
Missing: q= | Show results with:q=
Jan 23, 2024 · grep is a command-line utility that searches for a specific text string in one or more files. It looks for the pattern in each line of the file and prints out ...
Jul 12, 2023 · If you're wanting to look for a pattern that occurs between two other patterns - I don't think grep is the best tool for the job. You could perhaps use sed to ...
Aug 10, 2023 · Learn how to use grep regex to find patterns and match text in a single or multiple files by applying advanced regex with the grep utility.
Oct 4, 2023 · I would like to use telnet to connect to a system and check if foreign is in the response. I am trying ... echo quit | telnet 192.0.0.1 443 | grep -q "foreign".
Oct 29, 2023 · The grep command is a powerful tool used in Unix, Linux, and other Unix-like operating systems for searching and matching patterns within files or streams ...
Jul 2, 2023 · grep is a powerful tool for searching code from the terminal. This post will show you how to use grep and why it's an essential developer tool.