re icon indicating copy to clipboard operation
re copied to clipboard

A command line utility for pattern matching similar to 'grep', but supports capture groups and multiline matches.

Results 1 re issues
Sort by recently updated
recently updated
newest added

Specify wrap char/string: `-e "."` To auto escape occurences of wrap char/string: `-a` In use: ``` $ ifconfig | re -e "\"" -g "(?Peth\d+).+?inet addr:(?P[\d.]+)" IF="eth0", IP="10.0.0.100", IF="eth1", IP="10.0.0.101" ```