This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias c="clear" | |
alias src="source $HOME/.zshrc" | |
alias pc="proxychains" | |
alias cdev="cd ~/PP/Dev" | |
alias :wq="exit" | |
alias backup="rclone sync -LP Dropbox/ B2:MyPersonalCloud --filter-from ~/Dropbox/Dev/Others/rclone-filter --auto-confirm" | |
alias h="http" | |
alias hs="https" | |
alias p4="ifconfig | grep -P \"inet\s\"" | |
alias p6="ifconfig | grep inet6" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
cd $HOME | |
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh | |
wget sh.miao.dev/alias -O .alias | |
echo "source $HOME/.alias" >> .zshrc | |
source .zshrc |