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

16 lines
327 B
Bash
Executable File

#!/usr/bin/env bash
# YES_ZSH
# YES_BASH
# NO_DASH
is_empty() {
while read -r f; do
[ ! -d "$f" ] && [ -s "$f" ] && return 1
done < <(find ${1:-.})
# TODO: done < <(find ${1:-.} -type f -print -quit)
# this needs to skip empty files as well.
return 0
}
[ "${SOURCING:-0}" -gt 0 ] || is_empty "$@"