mirror of
https://github.com/epitaxy/charms.git
synced 2025-12-07 00:15:55 +09:00
4 lines
107 B
Bash
4 lines
107 B
Bash
#!/bin/bash
|
|
# delete empty folders (or directories) from current path
|
|
find . -depth -type d -empty -delete
|