regex and awk...
regex and awk...
Hi,
I would like to found a regex match in a stdout
stdout
/dev/loop0: [2081]:64 (/a/path/to/afile.dat)
I would like to match
/dev\/loop\d/
and return /dev/loop0
but the \d
seem not working with awk ... ?
How to achieve this ? ( awk is not mandatory )
You're viewing a single thread.
All comments
7
comments
You could try [0-9] instead?
awk '/\/dev\/loop[0-9]/ {print}'
If you have a larger sample of input and desired output, people can help you better.
4 0 Reply
7
comments
Scroll to top