blob: 02179c34636031f27eb57006954d9d9aca825f8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
rempty
------
This utility removes all empty directories under the tree(s) specified on
the command line. It's useful for cleaning up after inconsiderate programs
that create empty directories as a matter of course. For example:
rempty "${XDG_CONFIG_HOME:-~/.config}" "${XDG_DATA_HOME:-~/.local}" "${XDG_CACHE_HOME:-~/.cache}"
This can clean up after many messy programs that otherwise conform to the XDG
base directory specification.
|