First, reaching out for sed here appears to be neat (due to sed's declarative expressiveness) but redundant and making maintenance of your program more difficult as adding each "moving part" raises the complexity.
Basically, the steps you need to follow to reimplement your snippet in plain Tcl are:
- Open the source file.
- Repeatedly call
gets on the file's channel to read data from it line by line.
- Perform a properly constructed call to
regsub on each line, which would try to replace "Apple" with "Banana".
- As soon as the call to
regsub returned 1 or more meaning the string matched your regex, quit the file reading loop.
The rest of implementaton depends on what you're doing with your data.
Second, even if you opt to execute sed from your Tcl script, you surely do not need to involve the shell here as the Tcl's exec command is able to cope with command pipelines and stream redirections by itself.
Another non-obvious problem with your current approach is that inlining one script (for sed) in another script (for shell) might easily create escaping nightmares: try to think what happens if either your source pattern or your replacement pattern might be arbitrary data which can contain whitespace characters as well as single and double quotes.
Third, never ever call bash when you need to call a shell unless you really mean you need to have a bashism in the script you're passing to the shell. In all other 99.9% cases you should call /bin/sh instead which is the standard path to a standard shell which is guaranteed to implement POSIX shell semantics for the scripts it runs. The reason for this is that certain systems (notably, Debian and at least some its derivatives) have /bin/sh linked to another shell (in Debian, it's dash), which lacks interactive features of bash but in exchange it starts up and runs its scripts faster.
subfunction in the tcl manuals. There is very little that you can't do in tcl, calling bash or any shell should not be needed, except in unusual cases. Good luck. – shellter Jan 31 at 21:26