0
I have a.txt file that inside it has adsaadv I would like to search beyond it other files started by and finished by v.
I thought of using the grep something like, grep " [a-v$]" a.txt
However, I was unsuccessful, I have to merge grep commands with something more ?
I’d appreciate it if you could give me a little clarity.
a regex
^a(.*)v$
gives the expected result?– rray
http://meta.pt.stackoverflow.com/a/1079
– Bacco