Skip to content

Commit 79cd2f4

Browse files
committed
alias updated
1 parent e98ce03 commit 79cd2f4

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

alias.txt

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
#my aliases
2+
23
alias cl="clear"
34
alias dcstart="docker-compose up -d"
45
alias dcstop="docker-compose stop"
6+
alias dcallstop="docker stop \$(docker ps -aq)"
57
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)"
610
alias bashedit="cd && vim .bashrc"
711
alias bashrs="cd && source .bashrc"
812
alias pf="poweroff"
@@ -18,7 +22,11 @@ alias gc="git commit"
1822
alias gcm="git commit -m"
1923
alias gps="git push"
2024
alias gpl="git pull"
25+
26+
2127
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"
2230

2331
gmerge (){
2432
git checkout $1 && git merge $2 && git pull && git push && git checkout $2
@@ -39,4 +47,3 @@ goto () {
3947
fi
4048
}
4149

42-

0 commit comments

Comments
 (0)