Skip to content

Commit

Permalink
Add 'dnl' alias
Browse files Browse the repository at this point in the history
  • Loading branch information
andyone committed Sep 4, 2023
1 parent e368d9b commit b9f4f6b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,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 -ZOL --max-redirs 3 --parallel-max 5 --styled-output"
alias c="clear"
alias g="grep --color=auto"
alias e="$EDITOR"
Expand Down Expand Up @@ -383,6 +384,7 @@ function ssh_multi() {
fi

tmux new-window -n "SSH ($#)" "ssh $SSH_QUIET_OPTS $1 ; sleep 5"
rename_pane "$1"

shift 1

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +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` |
| `e` | Editor (_nano_) shortcut |
| `g …` | `grep` shortcut |
| `d …` | Docker shortcut |
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set -e

################################################################################

VERSION="2.3.4"
VERSION="2.3.5"

################################################################################

Expand Down

0 comments on commit b9f4f6b

Please sign in to comment.