Thank youG'day @Id10t and welcome to linux.org
I have moved this Thread to Command Line where it may attract more knowledgeable help.
It's beyond my paygrade but I will watch and learn
Enjoy your Linux
Chris Turner
wizardfromoz
Can anyone help me write an egrep command that will output all lines that contain 2 or more semi-colons together or separate. It seems simple but I've been stuck on this one for a while now. Thanks
egrep '([^;]*;){2}' file
Thanks for the reply CptCharis but when i used your command it also highlighted lines with only 1 ;Code:grep -E '(;+)'
Easier? Moreover I think your command matches all ERE that don't start with a ; and contain 2 ;
Thanks for the reply CptCharis but when i used your command it also highlighted lines with only 1 ;