Skip to content

Instantly share code, notes, and snippets.

View George-Miao's full-sized avatar
☠️
Dying inside

Pop George-Miao

☠️
Dying inside
View GitHub Profile
@George-Miao
George-Miao / alias.sh
Last active June 10, 2021 05:11
alias
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"
@George-Miao
George-Miao / setup.sh
Last active June 10, 2021 03:14
setup
#!/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