sed how to delete lines starting with code example
Example 1: delete a line starting with sed
# Delete all lines starting with '#'
$ sed -i '/^#/d' filepath
Example 2: sed delete line with match
Use d option at the end of sed command string for deleting line of matches.
sed -i "" "s/matching_pattern/d" file.txt