-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaliases
53 lines (52 loc) · 1.56 KB
/
aliases
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
45
46
47
48
49
50
51
52
53
# Alias
alias ll='ls -alF'
alias tmux="TERM=tmux tmux"
alias update='sudo apt update && sudo apt upgrade && sudo apt clean && sudo apt autoclean && sudo apt autoremove'
alias py='python3'
alias bpy='bpython'
alias cd..='cd ..'
alias ..='cd ..'
alias download='sudo apt install'
alias search='sudo apt search'
alias delete='rm -rf'
alias re='reset'
alias cdl='_(){ cd $1; ll; };_'
alias fh='free -h'
alias n='nvim'
alias n.='nvim .'
alias ran='ranger'
alias tmn='tmux new -s'
alias tma='tmux a -t'
alias t='tmux a -t .'
alias restart='exec $SHELL'
alias hg='history | grep'
alias tw='~/projetos/scripts/work_tmux_start.sh'
alias bi='rm -rf Gemfile.lock && bundle install'
alias bu='bundle update'
alias rs='rails server webrick'
alias rc='rails console'
alias sf='redis-cli flushall && bundle exec sidekiq start'
alias rk="cat tmp/pids/server.pid | xargs kill -9"
alias projects='cd ~/projects'
alias gat='git_authentication'
alias cddow='cd ~/Downloads'
alias cddoc='cd ~/Documents'
alias giup='git fetch --all && git status && git checkout master && git pull'
alias gs='git status'
alias ga='git add'
alias gd='git diff'
alias gl='git log'
alias gc='git checkout'
alias gcm='git commit -m'
alias glo='git log --oneline'
alias vim="nvim"
alias ..="cd .."
alias dock='sudo docker'
alias dp='docker ps'
alias dub='docker compose up --build'
alias du='docker compose up'
alias dd='docker compose down'
alias nc='cd ~/.config/nvim && n'
alias delete_containers='docker rm -vf $(docker ps -aq)'
alias delete_images='docker rmi -f $(docker images -aq)'
alias snt='cd ~/projects/simple_notification'