how to delete the a line from one point to the beginning with sed 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