Advertisement
Guest User

Untitled

a guest
Feb 27th, 2015
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. .
  2. ├── bar.py
  3. ├── hap
  4. │   ├── bla.py
  5. │   └── tests
  6. │   └── test_hap.py
  7. └── hip
  8. ├── testimony.py
  9. └── tests
  10. ├── foo.py
  11. └── test_hip.py
  12.  
  13. .
  14. ├── bar.py
  15. ├── hap
  16. │ ├── bla.py
  17. │ └── tests
  18. │ └── test_hap.py.bad
  19. └── hip
  20. ├── testimony.py
  21. └── tests
  22. ├── foo.py
  23. └── test_hip.py.bad
  24.  
  25. shopt -s globstar
  26. rename "s/tests/test_.*/tests/test_.*.bad/" **
  27.  
  28. Final $ should be $ or $name at (eval 1) line 1, within string
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement