Forum: Shell Scripting Mar 10th, 2005 |
| Replies: 3 Views: 12,841 Hello,
I have not done TCL script programming before, though I do believe the following links can help you:
Practical Programming in Tcl and Tk (http://www.beedub.com/book/)
Tcl/Tk... |
Forum: Shell Scripting Mar 8th, 2005 |
| Replies: 2 Views: 34,350 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.... |
Forum: Shell Scripting Mar 8th, 2005 |
| Replies: 2 Views: 12,277 Hello,
You're on the right path, though your syntax is a bit off. We know that sed substitutes text using the s command. Suppose you wanted to change all occurrences of "Unix" in the text to... |