Advertisement
Guest User

Untitled

a guest
Jan 1st, 2018
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. # 06feb17abu
  2. # (c) Software Lab. Alexander Burger
  3.  
  4. ## ls | grep "M" | tr "[A-Z]" "[a-z]" | grep -v "mail"
  5.  
  6. (de shPipes ()
  7. (in '("sh" "-c" "ls | grep 'M' | tr '[A-Z]' '[a-z]' | grep -v 'mail'")
  8. (line) ) )
  9.  
  10. (de pilPipes ()
  11. (pipe
  12. (pipe
  13. (pipe
  14. (in '("ls")
  15. (out '("grep" "M") (echo)) )
  16. (out '(tr "[A-Z]" "[a-z]") (echo)) )
  17. (out '("grep" "-v" "mail") (echo)) )
  18. (line) ) )
  19.  
  20. # vi:et:ts=3:sw=3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement