diff --git a/.config/zsh/functions/readwwwlog b/.config/zsh/functions/readwwwlog index 92412eb..0a359ed 100755 --- a/.config/zsh/functions/readwwwlog +++ b/.config/zsh/functions/readwwwlog @@ -23,7 +23,7 @@ for url in ${urls}; do if curl --silent --location --head ${url} | grep -q 'text/plain'; then sleep 1 # dpaste.com workaround - local file="$(mktemp)" + local file="$(mktemp --suffix='.readwwwlog')" curl --silent --location --output ${file} ${url} ${TERMINAL} -e less ${file} rm ${file}