From 15e24a3a6dd5c9e422d1e380898f4c88412a877f Mon Sep 17 00:00:00 2001 From: gg <gg@phaidra1.univie.ac.at> Date: Tue, 5 Jan 2016 12:44:03 +0100 Subject: [PATCH] bash bashing --- .bash_profile | 15 +++++++++++++++ .bashrc | 14 ++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 .bash_profile create mode 100644 .bashrc diff --git a/.bash_profile b/.bash_profile new file mode 100644 index 0000000..8fbdd2f --- /dev/null +++ b/.bash_profile @@ -0,0 +1,15 @@ +# .bash_profile + +# Get the aliases and functions +if [ -f ~/.bashrc ]; then + . ~/.bashrc +fi +if [ -f ~/.bashrc.local ]; then + . ~/.bashrc.local +fi + +# User specific environment and startup programs + +PATH=$PATH:$HOME/bin + +export PATH diff --git a/.bashrc b/.bashrc new file mode 100644 index 0000000..8e8314b --- /dev/null +++ b/.bashrc @@ -0,0 +1,14 @@ +# .bashrc + +# Source global definitions +if [ -f /etc/bashrc ]; then + . /etc/bashrc +fi + +# User specific aliases and functions + +# remove annoying global aliases +unalias l. ll ls vi + +alias ..="tcsh -l" + -- GitLab