# combined functionality of cat and ls, see http://askubuntu.com/q/448687/40569 # put this in your ~/.bashrc to enable the command "cl" on your console # Warning: conflicts with the command "cl" in the packet "cl-launch", but I don't need this cl() { [[ -f "$1" ]] && cat "$1" || ll "$1"; }