ubuntu remove every line that starts with string code example
Example: delete a line starting with sed
# Delete all lines starting with '#'
$ sed -i '/^#/d' filepath
# Delete all lines starting with '#'
$ sed -i '/^#/d' filepath