# make a directory md() { sa__make_directory "${@}"; } sa__make_directory() { mkdir \ "${@}" } # make a directory after making its parents mdp() { sa__make_directory_parents "${@}"; } sa__make_directory_parents() { mkdir \ --parents \ "${@}" }