Can anyone tell me how I can invoke or call: awk, grep and sed commands from within a C program?
..Thanks
This is a discussion on Awk, grep from C program within the C Programming forums, part of the General Programming Boards category; Can anyone tell me how I can invoke or call: awk, grep and sed commands from within a C program? ...
Can anyone tell me how I can invoke or call: awk, grep and sed commands from within a C program?
..Thanks
system() or popen() would be good things to read about in the respective manual pages.
If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
If at first you don't succeed, try writing your phone number on the exam paper.
I support http://www.ukip.org/ as the first necessary step to a free Europe.
Also lookup the man page of the exec() family of functions.