}
-function mkcd {
- if [ $# -ne 1 ]; then
- echo "Usage: mkcd directory_name" >&2
- elif [ -d "$1" ]; then
- cd "$1"
- elif [ -e "$1" ]; then
- echo "Error: $1 is a file" >&2
- else
- mkdir -p "$1" && cd "$1"
- fi
}
}
+function mkcd {
+ if [ $# -ne 1 ]; then
+ echo "Usage: mkcd directory_name" >&2
+ elif [ -d "$1" ]; then
+ cd "$1"
+ elif [ -e "$1" ]; then
+ echo "Error: $1 is a file" >&2
+ else
+ mkdir -p "$1" && cd "$1"
+ fi
+}
+
+
tmux() {
case "$TERM" in
rxvt)