From: Daniel Hahler Date: Thu, 27 Aug 2015 20:58:35 +0000 (+0200) Subject: Use shorter echo for newlines X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=fadddf6502310cad1ce4f9444d77ada1f6c98bee;p=zsh-autoenv.git Use shorter echo for newlines --- diff --git a/autoenv.zsh b/autoenv.zsh index d33bf85..0f499f5 100644 --- a/autoenv.zsh +++ b/autoenv.zsh @@ -224,13 +224,13 @@ _autoenv_check_authorized_env_file() { if ! _autoenv_authorized_env_file $1; then echo "Attempting to load unauthorized env file!" >&2 command ls -l $1 >&2 - echo "" >&2 + echo >&2 echo "**********************************************" >&2 - echo "" >&2 + echo >&2 command cat $1 >&2 - echo "" >&2 + echo >&2 echo "**********************************************" >&2 - echo "" >&2 + echo >&2 echo -n "Would you like to authorize it? (type 'yes') " >&2 # echo "Would you like to authorize it?" # echo "('yes' to allow, 'no' to not being asked again; otherwise ignore it for the shell) "