This repository has been archived on 2023-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/.config/aliasrc

18 lines
665 B
Plaintext
Raw Normal View History

2020-05-06 03:20:19 +02:00
# a file containing all my aliases
# sourced at launch
alias cp='cp -v'
alias grep='grep --color=auto'
2020-05-06 03:20:19 +02:00
alias ls='ls --color=auto'
alias ll='ls -lh'
alias la='ls -lah'
alias bulkrename='\ls | $EDITOR - -c ":%s/.*/mv -i & &/g"'
alias backup='rsync -aAXv --exclude={"/dev/*","/proc/*","/sys/*","/tmp/*","/run/*","/mnt/*","/media/*","/lost+found"} /'
alias printenv='printenv | sort'
alias gu='git fetch upstream && git merge upstream/master'
alias unimatrix='unimatrix -a -f -c=cyan -s=95'
alias untar='tar -zxvf'
alias @root='ssh root@217.69.7.192'
alias @swytch='ssh swytch@davidjulien.xyz'
alias dotfiles='/usr/bin/git --git-dir=$HOME/.dotfiles --work-tree=$HOME'