Answers for "regex final word"

0

regex final word

Just use "$" to specify matching a pattern at the end 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