Advertisement
kivaari

server.sh aufgabe 1

Dec 6th, 2016
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.10 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. while true;
  4. do
  5.     rm -f pipe
  6.     mkfifo pipe
  7.     nc -l -p 1337 < pipe | cat > pipe;
  8. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement