From 600d7b303fb3a139858ba266caa99c547f4400da Mon Sep 17 00:00:00 2001 From: Jann Horn Date: Sat, 12 Sep 2015 14:47:33 +0200 Subject: [PATCH] proper attribution --- README | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README b/README index d6582bf..576f798 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ This is a helper program to clean unused files from a project source directory. -== Usage == +Usage: cleanmysourcetree [] deletenew will cause new files and directories created during the compilation process to be deleted. If no target directory is given, it defaults to the current directory. @@ -9,4 +9,10 @@ If no target directory is given, it defaults to the current directory. under a different user. In particular if some build process decides to replace an existing folder with a symlink, things could perhaps get nasty. +Empty directories will not be removed automatically. If you want to get rid of them, run this in the source tree: + + find . -type d -empty -delete + This code depends on the uthash library, or whatever you want to call that thing. + +The idea for this comes from Joshua J. Drake (jduck). \ No newline at end of file -- 2.20.1