Add bash functions

This commit is contained in:
2020-07-16 23:59:22 +01:00
parent 36ecd69f51
commit bbdaad41b1
5 changed files with 46 additions and 36 deletions

8
bash/.bash_aliases Normal file
View File

@@ -0,0 +1,8 @@
# OSX aliases
if [ $(uname) == "Darwin" ]; then
alias ls="ls -FG"
else
alias ls="ls -F --color=auto"
fi
alias tma="tmux attach"