I'm writing a shell script and I want to escape a string. Is there any way to convert this:
I'm happy.
You're sad.
to
I\'m happy.\nYou\'re sad.
I'm pretty sure there's some combination of sed/awk that does this....
Thanks
|
|
|
|
|
|
|
I think this does what you're after. The sequencing of the operations in the
|
||
|
|
|
|
This works for replacing the ' with \'.
Are you sure you want to replace the space between "happy." and "You're" with a "\n"? \n is a newline, but your original line doesn't seem to have a new-line there. |
||
|
|
|
try
I probably messed up a few "\" here. Best way is to try it yourself. :) |
||||||
|