# ~/.bashrc shopt -s checkwinsize shopt -s histappend PS1="\h:\w\$ " function ls { LC_ALL=C command ls -F --hide='*.blend?' --hide='*.pyc' --hide='__pycache__' "$@" } function mv { command mv -i "$@"; } function cp { command cp -i "$@"; } function more { zless "$@"; } function reset { command reset; echo -e '\e[10;0]\c'; } function pstree { command pstree -U "$@"; } function tree { command tree --charset=utf-8 "$@"; } function calc { python -c "from math import *; print($*)"; } function ff { feh --geometry=1200x900 "$@"; }