I want to be able to prepend a string to the beginning of each text file in a folder. How can I do this using bash on Linux?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
This will do that. You could make it more efficient if you are doing the same text to each file...
|
|||
|
You can do it like this without a loop and
if you want to back up your files, use -i.bak Or using
|
|||
|
|
|
And you can do this using sed in 1 single command as well
|
|||
|
|
|
This should do the trick.
I wouldn't recommending doing this if your files are very big though. |
|||
|
|
|
You can do this as well:
It's not much different from the 1st post but does show how to treat the output of the 'echo' statement as a file without having to create a temporay file to store the value. |
|||
|
|
|
You may use the ed command to do without temporary files if you like:
|
|||
|
|
|
This is the easiest I have worked out.
|
||||
|
|