ozbek / .bash_aliases

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bash aliases

df only what is important (dfs: df-short):

alias dfs="df -h -P | sed '1d' | egrep -v '\/proc$|/dev$|\/run$|^tmpfs.*\/dev.*$|^tmpfs.*\/run.*$|^tmpfs.*\/sys.*$|^tmpfs.*\/var.*$|\/snap.*'"

View memory usage:

alias mem="printf \" MEM \t PID \t COMMAND\n\"; ps aux | awk '{printf(\"%.0f MB\t %d\t%s\n\", \$6/1024, \$2, \$11)}' | sort -rn | head -25"

pip-upgrade all packages:

alias pip-upgrade-all-packages="pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1  | xargs -n1 pip install -U"

scp to rsync:

alias scp="rsync -avzhP"

About

License:GNU General Public License v3.0


Languages

Language:Shell 100.0%