You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
146 B
Bash

#!/bin/sh
# Check that all of the given directories are empty
for d in "$@"; do
if [[ -n "$(ls -1 "$d")" ]]; then
exit 1
fi
done
exit 0