Size: 846
Comment:
|
← Revision 4 as of 2012-10-25 20:16:40 ⇥
Size: 976
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 |
|
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