Skip to main content
The 2024 Developer Survey results are live! See the results
added 3 characters in body
Source Link
Adam Siemion
  • 15.8k
  • 9
  • 60
  • 96
A | while read -r l; do B &; done

B is run in the background to address the following requirement: line being processed as input for B separately and instantly.

A | while read l; do B &; done
A | while read -r l; do B &; done

B is run in the background to address the following requirement: line being processed as input for B separately and instantly.

Source Link
Adam Siemion
  • 15.8k
  • 9
  • 60
  • 96

A | while read l; do B &; done