1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-26 09:07:12 -07:00
rc/sh/is_empty

18 lines
400 B
Plaintext
Raw Normal View History

2013-06-28 05:22:14 -07:00
#!/usr/bin/env bash
2021-07-29 00:37:35 -07:00
# YES_ZSH
# YES_BASH
# NO_DASH
2021-09-23 06:48:05 -07:00
# NO_ASH
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.
while read -r f; do
[ ! -d "$f" ] && [ -s "$f" ] && return 1
2013-06-28 05:22:14 -07:00
done < <(find ${1:-.})
# 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
[ -n "${preload+-}" ] || is_empty "$@"