mirror of
https://github.com/epitaxy/charms.git
synced 2025-12-07 00:15:55 +09:00
5 lines
137 B
Bash
5 lines
137 B
Bash
#!/bin/bash
|
|
# delete empty folders (or directories) from current path
|
|
# 빈 폴더만 삭제한다.
|
|
find . -depth -type d -empty -delete
|