You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
614 B
22 lines
614 B
# .bashrc
|
|
|
|
# HEADER: ===========================================================
|
|
# HEADER: This file is automanaged by ansible
|
|
# HEADER: While it can still be managed manually, it is definitely not recommended.
|
|
# HEADER: Any manual changes to this file run the risk of being overwritten!
|
|
# HEADER: ===========================================================
|
|
|
|
alias rm='rm -i'
|
|
alias cp='cp -i'
|
|
alias mv='mv -i'
|
|
|
|
# Source global definitions
|
|
if [ -f /etc/bashrc ]; then
|
|
. /etc/bashrc
|
|
fi
|
|
|
|
# User specific aliases and functions
|
|
[ -f ~/.bash_aliases ] && . ~/.bash_aliases
|
|
|
|
export PS1="${HOSTNAME^^}"':$PWD # '
|
|
|
|
|