Grep: Difference between revisions

From Andreida
(Created page with "It depends on your linux/grep, how you have to build your regular expressions. Search for letter/digit combinations of a certain length: <pre> grep -oe 'alnum:\{17\}' m...")
(No difference)

Revision as of 11:41, 16 February 2016

It depends on your linux/grep, how you have to build your regular expressions.

Search for letter/digit combinations of a certain length:

grep -oe  '[[:alnum:]]\{17\}' my_data.txt