⇤ ← Revision 1 as of 2012-03-09 09:43:46
Size: 846
Comment:
|
Size: 959
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 11: | Line 11: |
find . -type d -empty -exec touch {}/.emptydir | find . -type d -not -path "*/.hg/*" -empty -exec touch {}/.emptydir |
Line 15: | Line 15: |
find . -type d -not -empty -exec rm {}/.emptydir | find . -type d -not -path "*/.hg/*" -not -empty -exec rm {}/.emptydir |
Line 17: | Line 17: |
find . -type d -empty -exec touch {}/.emptydir | find . -type d -not -path "*/.hg/*" -empty -exec touch {}/.emptydir |
Line 21: | Line 21: |
find . -type f -name ".emptydir" -delete | find . -type f -not -path "*/.hg/*" -name ".emptydir" -delete |
Line 25: | Line 25: |
find . -name ".emptydir" -ls | find . -type f -not -path "*/.hg/*" -name ".emptydir" -ls |
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