File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 1
1
#my aliases
2
+
2
3
alias cl="clear"
3
4
alias dcstart="docker-compose up -d"
4
5
alias dcstop="docker-compose stop"
6
+ alias dcallstop="docker stop \$(docker ps -aq)"
5
7
alias dcedit="vim docker-compose.yml"
8
+ alias dcremoveallimages="docker image rm -f \$(docker image ls -aq)"
9
+ alias dcremoveallcontainers="docker container rm -f \$(docker container ls -aq)"
6
10
alias bashedit="cd && vim .bashrc"
7
11
alias bashrs="cd && source .bashrc"
8
12
alias pf="poweroff"
@@ -18,7 +22,11 @@ alias gc="git commit"
18
22
alias gcm="git commit -m"
19
23
alias gps="git push"
20
24
alias gpl="git pull"
25
+
26
+
21
27
alias updateMachine="sudo apt update -y && sudo apt upgrade -y && sudo apt full-upgrade -y"
28
+ alias myjupyter="cd && cd learning/my_jupyter_works/ && source my_jupyter_works/bin/activate && jupyter notebook"
29
+ alias mvnCleanInstallSkipTest="mvn clean install -DskipTests"
22
30
23
31
gmerge (){
24
32
git checkout $1 && git merge $2 && git pull && git push && git checkout $2
@@ -39,4 +47,3 @@ goto () {
39
47
fi
40
48
}
41
49
42
-
You can’t perform that action at this time.
0 commit comments