mirror of
https://github.com/notwa/rc
synced 2024-11-05 08:09:03 -08:00
9 lines
168 B
Text
9 lines
168 B
Text
|
#!/usr/bin/env bash
|
||
|
is_empty() {
|
||
|
while read -r; do
|
||
|
[ ! -d "$REPLY" ] && [ -s "$REPLY" ] && return 1
|
||
|
done < <(find ${1:-.})
|
||
|
return 0
|
||
|
}
|
||
|
is_empty "$@"
|