Advertisement
Guest User

Untitled

a guest
Jul 1st, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. tail -3f logfile.log | grep "action.*add" | sed -u -e "s/^/'/" -e "s/$/'/" | xargs -L 1 -P 5 bash testscript.sh
  2.  
  3. tail -3f logfile.log | grep "action.*add"
  4.  
  5. tail -3f /var/tmp/rabbitmq-tracing/logfile.log | grep "action.*add" | grep add
  6.  
  7. tail -f file.txt | grep something | grep something | grep something
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement