diff --git a/.zshrc b/.zshrc index 9bf69ac..885bb44 100644 --- a/.zshrc +++ b/.zshrc @@ -59,7 +59,7 @@ export PATH=$HOME/.bin:/usr/local/bin:$PATH alias tx="tmux attach 2>/dev/null || tmux new -n HOME" alias sshk="ssh $SSH_QUIET_OPTS" alias scpk="scp $SSH_QUIET_OPTS" -alias dnl="curl -ZL --max-redirs 3 --parallel-max 5 --remote-name-all" +alias dl="curl -ZL --max-redirs 3 --parallel-max 5 --remote-name-all" alias c="clear" alias g="grep --color=auto" alias e="$EDITOR" diff --git a/README.md b/README.md index 2477f61..0a4dcb8 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ bash <(curl -fsSL https://andy.one/dotfiles/install.sh) | `sshk …` | `ssh` command without checking and saving host key | | `ssht …` | `sshk` to many hosts at once (_requires TMUX session_) | | `scpk …` | `scp` command without checking and saving host key | -| `dnl …` | Download one or more files using `curl` | +| `dl …` | Download one or more files using `curl` | | `e` | Editor (_nano_) shortcut | | `g …` | `grep` shortcut | | `d …` | Docker shortcut | diff --git a/install.sh b/install.sh index c3f9284..0c05eca 100755 --- a/install.sh +++ b/install.sh @@ -7,7 +7,7 @@ set -e ################################################################################ -VERSION="2.3.7" +VERSION="2.3.8" ################################################################################