-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalias
More file actions
41 lines (34 loc) · 1.52 KB
/
alias
File metadata and controls
41 lines (34 loc) · 1.52 KB
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
alias git-age="git for-each-ref --format '%(authordate) %(refname) %(subject)' refs/heads"
alias wifiName="/Sy*/L*/Priv*/Apple8*/V*/C*/R*/airport -I | awk '/ SSID:/ {print $2}'"
alias net="curl ipinfo.io"
alias recent="history | awk '{print $2}' | sort | uniq -c | sort -rn | head"
alias vi="nvim"
alias ls='ls -G'
alias l='ls -lastrG'
alias cdg="cd ~/Development/github/weolopez.github.io"
alias did="$EDITOR +'normal Go' +'r!date' ~/did.txt"
alias goal="$EDITOR + ~/goal.txt"
alias p="$EDITOR + ~/prompt.txt"
alias size="du -sh"
alias ea="$EDITOR $SHELL_FILES_DIR/alias"
alias ef="$EDITOR $SHELL_FILES_DIR/functions"
alias ep="$EDITOR $SHELL_FILES_DIR/paths"
alias ez="$EDITOR $SHELL_FILES_DIR/zshrc"
alias es="$EDITOR ~/bin/snipit"
#alias run="~/bin/run.sh $@"
#alias ask="~/bin/ask.sh $@"
alias x="arch -x86_64 zsh"
alias a="arch -xarm64 zsh"
alias brew='env PATH="${PATH//$(pyenv root)\/shims:/}" brew'
alias p3="python3"
alias pip="pip3"
alias mongos="brew services start mongodb-community"
#mongod --dbpath ~/Applications/mongo/db/data"
alias mongobd="mongodump --host"
alias mymongo="mongosh "mongodb+srv://freecluster.f3g4q6l.mongodb.net/" --apiVersion 1 --username weolopez"
alias firebaseD=firebase deploy --only hosting
alias buildD="docker build -t dmp-image .;docker run --name dmp-image -d -p 8080:8080 -p 1880:1880 dmp-image"
alias buildP="mvn -o clean install -DskipTests"
alias buildQ="mvn clean quarkus:dev"
alias debugQ="mvn clean quarkus:dev -Ddebug"
alias buildN="mvn package -Pnative -Dquarkus.native.container-runtime=docker"