summaryrefslogtreecommitdiffstats
path: root/.bash_aliases
blob: 6fd4a13b24643d1aa5bb5b51a285170507cab588 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

alias ls='LC_COLLATE=C ls --color=auto'
alias lsc='LC_COLLATE=C ls --color=always'
alias sort='LC_COLLATE=C sort'
alias less='less -R'
alias irc='ssh -t odin1.pehjota.net screen -dR irc weechat-curses'

b()
{
	"${@}" >/dev/null 2>&1 &
}

# Add the "interactive bin" directory.
if [ -d "${HOME}/ibin" ] ; then
	PATH="${HOME}/ibin:${PATH}"
fi