/ Published in: Bash
Expand |
Embed | Plain Text
#!/bin/bash find . -name .svn -print0 | xargs -0 rm -rf zenity --info --text "Done."
You need to login to post a comment.
endorfin on 11/13/08
1 person have marked this snippet as a favorite
#!/bin/bash find . -name .svn -print0 | xargs -0 rm -rf zenity --info --text "Done."
You need to login to post a comment.