I want to delete a particular word from first line of a file using shell script
My test.txt is
# hello helloworld
Goodday
Goodbye
In this I want the bash code which edits test.txt to
# helloworld
Goodday
Goodbye
I want to delete the string "hello" from the first line