Quote:
Originally Posted by bhaskar_m
Adding to this post I just wanted to know how to add some characters other than special characters in every line of a file , say I want to add a "/" at the end of all lines in file. Kindly help. Thank you
|
Escape the character with a backslash:
Code:
sed 's/$/\//'