-
Notifications
You must be signed in to change notification settings - Fork 0
/
active.sh
executable file
·45 lines (29 loc) · 1.07 KB
/
active.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# source {this_file} in ~/.zshrc
THIS_DIR="${HOME}/tools"
PRIVATE_TOOLS_DIR="${THIS_DIR}/private"
export PATH=$PATH:$THIS_DIR/bin
source "${PRIVATE_TOOLS_DIR}/active.sh"
# minikube docker
alias minidocker="source ${THIS_DIR}/minikube-docker.sh"
# make-gitignore
alias makegitignore="python3 ${THIS_DIR}/make-gitignore.py"
# f2utf8
alias f2utf8="python3 ${THIS_DIR}/f2utf8.py"
# km2t
alias km2t="python3 ${THIS_DIR}/others/km2t.py"
# ignore_folders_in_spotlight
alias ignore_folders_in_spotlight="sudo ${THIS_DIR}/ignore_folders_in_spotlight.py"
# httpserve (python)
alias httpserve="python3 ${THIS_DIR}/simple-cors-http-server.py"
# httpstatic (go)
alias httpstatic="${THIS_DIR}/httpstatic/bin/httpstatic"
# emsend
alias emsend="python3 ${THIS_DIR}/myemail_sender.py"
# kill 输入法
alias killscim="sh ${THIS_DIR}/kill-scim.sh"
# pyenv-brew-relink
alias pyenv-brew-relink="sh ${THIS_DIR}/pyenv-brew-relink.sh"
# portnum 每日端口号
alias portnum="python3 ${THIS_DIR}/portnum.py"
# cloudflareTunnelHealth
alias cloudflareTunnelHealth="${THIS_DIR}/cloudflareTunnelHealth"