mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2025-05-11 11:39:50 +02:00
11 lines
413 B
Bash
11 lines
413 B
Bash
#!/usr/bin/env bash
|
|
|
|
alias pub-ipv4="curl ip4.clerie.de"
|
|
alias serve="python -m SimpleHTTPServer 8080"
|
|
alias week='date +%V'
|
|
alias path='echo -e ${PATH//:/\\n}'
|
|
alias distro='cat /etc/*-release'
|
|
alias reload='source ~/.zshrc'
|
|
alias undo-git-reset-head="git reset 'HEAD@{1}'"
|
|
alias update-local="bash $HOME/.dotfiles/install"
|
|
alias fix-ssh-key-permissions="bash $HOME/.dotfiles/scripts/fix-ssh-key-permissions.sh"
|