]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - config/bash/dot_bashrc
Merge branch 'next' of ssh://git.ipfire.org/pub/git/ipfire-2.x into next
[people/teissler/ipfire-2.x.git] / config / bash / dot_bashrc
CommitLineData
b21b0df6
MT
1# .bashrc
2
3# User specific aliases and functions
4
5alias rm='rm -i'
6alias cp='cp -i'
7alias mv='mv -i'
8
9# Source global definitions
10if [ -f /etc/bashrc ]; then
11 . /etc/bashrc
12fi
778ac3ed
DW
13
14# Automatically logout only console users after 10 minutes.
15export TMOUT=0
16if [ -z "${SSH_TTY}" ] && [ -z "${STY}" ]; then
17 export TMOUT=600
18fi