Differences between revisions 1 and 4 (spanning 3 versions)
Revision 1 as of 2012-03-09 09:43:46
Size: 846
Editor: 117
Comment:
Revision 4 as of 2012-10-25 20:16:40
Size: 976
Editor: mpm
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
<<Include(A:style)>>
Line 11: Line 13:
find . -type d -empty -exec touch {}/.emptydir find . -type d -not -path "*/.hg/*" -empty -exec touch {}/.emptydir \;
Line 15: Line 17:
find . -type d -not -empty -exec rm {}/.emptydir find . -type d -not -path "*/.hg/*" -not -empty -exec rm {}/.emptydir \;
Line 17: Line 19:
find . -type d -empty -exec touch {}/.emptydir find . -type d -not -path "*/.hg/*" -empty -exec touch {}/.emptydir \;
Line 21: Line 23:
find . -type f -name ".emptydir" -delete find . -type f -not -path "*/.hg/*" -name ".emptydir" -delete
Line 25: Line 27:
find . -name ".emptydir" -ls find . -type f -not -path "*/.hg/*" -name ".emptydir" -ls
Line 27: Line 29:
Line 28: Line 31:
[[CategoryAudit|CategoryTipsAndTricks]] CategoryTipsAndTricks

{i} This page does not meet our wiki style guidelines. Please help improve this page by cleaning up its formatting.

MarkEmptyDirsWithFind

This is how I do the most basic tasks that the MarkEmptyDirs tool can do but using the "find" command in GNU/Linux. Doing a shell script with this commands and adding some advanced functionality should be easy.

Use with caution.

Use cases

All examples must be run in our working project root directory or you must change the "find ." part with "find DIRECTORY".

Create placeholder files

find . -type d -not -path "*/.hg/*" -empty -exec touch {}/.emptydir \;

Update placeholder files

find . -type d -not -path "*/.hg/*" -not -empty -exec rm {}/.emptydir \;

find . -type d -not -path "*/.hg/*" -empty -exec touch {}/.emptydir \;

Delete placeholder files

find . -type f -not -path "*/.hg/*" -name ".emptydir" -delete

List placeholder files

find . -type f -not -path "*/.hg/*" -name ".emptydir" -ls


CategoryTipsAndTricks

MarkEmptyDirsWithFind (last edited 2012-10-25 20:16:40 by mpm)