From 16cd4dc6f7a47f68dafcc87b1e5369e3e404028c Mon Sep 17 00:00:00 2001 From: Anton Novojilov Date: Thu, 30 Nov 2023 13:58:09 +0300 Subject: [PATCH] =?UTF-8?q?dnl=20=E2=86=92=20dl?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .zshrc | 2 +- README.md | 2 +- install.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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" ################################################################################