How to match all lines that begins with word ADDRESS and the second string start with abc characters.
remark - ( I need to combine the sed syntax in my shell script)
for example
more file
ADDRESS abc1a (match)
ADDRESS abc1b (match)
ADDRESS acb1a (will not match)
ADRESS abc (will not match)
ADDRESS abc2a (will match)
ADDRES abc1a (will not match)
ADDRESS ab (will not match)