Grep
From Andreida
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
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