sed insert line at beginning of file code example
Example: sed add word to beginning of line
$ sed 's/^/#/' file.txt
#add
#character
#at the
#beginning of
#each line
$ sed 's/^/#/' file.txt
#add
#character
#at the
#beginning of
#each line