Created
April 8, 2017 20:43
-
-
Save DarkPark/0704a5e6e76e1cd2b7063adbcdce4361 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mkfifo dptmp | |
| while true; do | |
| read line < dptmp | |
| if [[ $line ]]; then | |
| echo "processing $line" | |
| fi | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment