Guest User

Untitled

a guest
Feb 19th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. mkfifo pipe
  2.  
  3. exec 3<>pipe
  4.  
  5. <pipe your_script.sh
  6. # or if you want to see incoming data
  7. <pipe tee >(your_script.sh)
  8.  
  9. echo "/some/path/or/another/input" > pipe
  10.  
  11. cat large_input.txt > pipe
  12.  
  13. script_that_generates_input.sh > pipe
Add Comment
Please, Sign In to add comment