I RTFMed. I think I udnerstood some things, but definitely couldn't catch the whole picture. So I continue trying to find good faq/manual/book, but by this time, could somebody try to explain me some things.
To be more clear:
1. What exactly fork do (it's mechanism, how it works)?
2.
open PIPE, "grep commit logfile | ";
while(<PIPE>) {
# Process records selected by "grep" here
}
As I understand that the grep and the while process works simultaniously. Am i right? How is this possible? (mean is only that needed?)
That's for now, i promise there will be more questions.
Corwin
To be more clear:
1. What exactly fork do (it's mechanism, how it works)?
2.
open PIPE, "grep commit logfile | ";
while(<PIPE>) {
# Process records selected by "grep" here
}
As I understand that the grep and the while process works simultaniously. Am i right? How is this possible? (mean is only that needed?)
That's for now, i promise there will be more questions.
Corwin