How to add a text at the beginning of a text files in a folder?

how to add a text ( surya) at the beginning of a text files (so many) in folder

text file:

111111
555555
666666

result:

surya
111111
555555
666666
sed -i '1i\Surya' file

You could use a for/while loop with above command.

(echo "Surya"; cat file) > newfile
1 Like