To find all the lines that end with a p
|
1 |
cat filename | grep '\p$' |
or
|
1 |
grep '\p$' filename |
To find all the lines that end with a p
|
1 |
cat filename | grep '\p$' |
or
|
1 |
grep '\p$' filename |