How can I call awk or sed inside a c program? I know I could use exec(), but I don't want to deal with fork() and all that other nastiness.
|
|
You can do it via the system() call This Thread is a good example |
||
|
|
|
|
(except with more error checking and stuff) If you want finer control over argument handling (instead of going through |
||
|
|
|
|
system() is easy enough. But you should try not to do this if you can. Scripts work best when they are on top of things, not underneath. If you're in UNIX, it's often way better to break up the work and write a top level script to call all of the pieces. I remember watching a programmer add a huge number of system calls into his C code in order to avoid having to learn the Bourne shell. He figured it was a clever and quick way to get it going, however when it failed, it failed badly. He wasted huge amounts of time debugging the mess. It would have been way faster to just learn a few simple shell commands... Paul. |
||
|
|
|
|
Would |
||
|
|
|
|
Then your choice is |
||
|
|
