add if directory exists function

This commit is contained in:
Jacob Salmela 2017-05-22 01:06:15 -05:00
parent 69fe889f92
commit 1aa5943e67
No known key found for this signature in database
GPG key ID: 1962FF1A5046135E

View file

@ -88,6 +88,19 @@ if_file_exists() {
fi fi
} }
if_directory_exists() {
# Set the first argument passed to tihs function as a named variable for better readability
local directory_to_test="${1}"
# If the file is readable
if [[ -d "${directory_to_test}" ]]; then
# Return success
return 0
else
# Otherwise, return a failure
return 1
fi
}
get_distro_attributes() { get_distro_attributes() {
# Put the current Internal Field Separator into another variable so it can be restored later # Put the current Internal Field Separator into another variable so it can be restored later
OLD_IFS="$IFS" OLD_IFS="$IFS"