
Remove .svn dirs
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
This script just remove all .svn from the current dir (Not the selected...)
Install:
copypasta into ~/.gnome2/nautilus-scripts/
Source Code Script:
[quote]#!/bin/bash
find . -name .svn -print0 | xargs -0 rm -rf
zenity --info --text "Done."[/quote]
Please login or register to add a comment or rating