Skip to content

Commit

Permalink
Strip newline from utcnow and utcnowsafe
Browse files Browse the repository at this point in the history
  • Loading branch information
b-ggs committed Jan 17, 2025
1 parent d9d2e3f commit e650dd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zsh/.zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ alias keychainloaddefault='keychain --nogui -q $HOME/.ssh/id_ed25519'

alias ipify='curl -s https://api.ipify.org | tee /dev/tty | pbcopy'
alias tmpdir='cd $(mktemp -d)'
alias utcnow='date -u +"%Y-%m-%dT%H:%M:%SZ" | tee /dev/tty | pbcopy'
alias utcnowsafe='date -u +"%Y-%m-%dT%H%M%SZ" | tee /dev/tty | pbcopy'
alias utcnow='date -u +"%Y-%m-%dT%H:%M:%SZ" | xargs echo -n | tee /dev/tty | pbcopy'
alias utcnowsafe='date -u +"%Y-%m-%dT%H%M%SZ" | xargs echo -n | tee /dev/tty | pbcopy'

# fzf

Expand Down

0 comments on commit e650dd7

Please sign in to comment.