Answers for "match first word regex"

0

match first word regex

Just use "^" to specify matching a pattern at the beginning of each line.
Example with grep:
grep "^pattern" file.txt
Posted by: Guest on October-24-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language