I have a project where I want to manipulate certain output files.
This can be done using a combination of grep and sed and piping with |
Alternatively, I can also write a C ++ program to do the same.
Is there a definitive answer about which method will be faster since grep and sed should already be well optimized enough?
source
share