what is meaning if the sed pattern?
Hi all,
what is the meaning of the sed below. grep the line with "^BACKUP=" from file.txt and pass through sed,
s+ means multiple occurrence of "BACKUP="?
What is +""+g means?
grep '^BACKUP=' file.txt | sed s+BACKUP=+""+g
Thanks
friendly