Consider, you have a file like below:
# cat test.txt
12324
234523
3431
343
34345
3434
43234
Now, if you want to prefix a particular string to each line in the file, how will you do it? This is a common challenge for DBA/Developers working with Linux environment.
# cat test.txt
12324
234523
3431
343
34345
3434
43234
Now, if you want to prefix a particular string to each line in the file, how will you do it? This is a common challenge for DBA/Developers working with Linux environment.