Forum: Shell Scripting Mar 8th, 2005 |
| Replies: 2 Views: 34,383 Hello,
If I understand correctly, you want to replace all space occurances to "\space" where space represents the space, ' ', character:sed -i 's/ /\\ /' file
To clarify:
sed — Is the program.... |