tmp: Update help text, add more directory permissions checking

This commit is contained in:
Salt 2019-02-10 12:29:23 -06:00
parent 6637e750c9
commit a544d9827d

14
tmp
View File

@ -34,7 +34,7 @@ while getopts ":h" opt; do
cat << EOF
Usage: $name [TEMPLATE]
Create a temporary directory, copying the folder [TEMPLATE] from
~/Templates/tmp, if it exists.
[XDG_TEMPLATES_DIR|~/Templates]/tmp, if it exists.
-h Show this help text
@ -59,12 +59,16 @@ if [ -n "$1" ]; then
fi
unset userdirs
copydir="${XDG_TEMPLATES_DIR:-~/Templates}/tmp/$1"
if [ -d "$copydir" ]; then
log "Using template \"$1\""
cp -r "$copydir"/* "$tmpdir"
else
if ! [ -d "$copydir" ]; then
log "Could not find template directory \"$copydir\""
exit 3
fi
if ! [ -r "$copydir" ]; then
log "Cannot read template directory \"$copydir\""
exit 4
fi
log "Using template \"$1\""
cp -r "$copydir"/* "$tmpdir"
unset copydir
fi