Duplicate of prepend to a file one liner shell? .
I trying to put my paste to the very first line without opening an editor similarly as but for the reverse direction
echo Masi >> file
How can you put data to the first line in terminal without opening an editor?
For instance,
I have a file
M
M
M
I want to put Masi to my file such that
Masi
M
M
M
without opening an editor in terminal.