2013-06-28 05:22:14 -07:00
|
|
|
#!/usr/bin/env bash
|
2024-07-22 17:54:54 -07:00
|
|
|
# compat: +ash +bash -dash -hush +ksh -mksh -oksh +osh -posh -yash +zsh
|
2021-07-29 00:37:35 -07:00
|
|
|
|
2021-07-30 17:57:08 -07:00
|
|
|
is_empty() { ### @-
|
|
|
|
### return 0 if the directory given by argument is empty.
|
2021-07-29 05:44:12 -07:00
|
|
|
while read -r f; do
|
|
|
|
[ ! -d "$f" ] && [ -s "$f" ] && return 1
|
2013-06-28 05:22:14 -07:00
|
|
|
done < <(find ${1:-.})
|
2021-07-21 15:30:05 -07:00
|
|
|
# TODO: done < <(find ${1:-.} -type f -print -quit)
|
|
|
|
# this needs to skip empty files as well.
|
2013-06-28 05:22:14 -07:00
|
|
|
return 0
|
|
|
|
}
|
2021-07-29 00:37:35 -07:00
|
|
|
|
2021-08-02 13:48:46 -07:00
|
|
|
[ -n "${preload+-}" ] || is_empty "$@"
|