From a47cf9dfe36b7fb54d3fb8ec7530233113ef0161 Mon Sep 17 00:00:00 2001 From: Maximilian Friedersdorff Date: Fri, 29 Apr 2016 16:36:12 +0100 Subject: [PATCH] Create bash_lite for hosts without gpg --- bash_lite/.bash_aliases | 1 + bash_lite/.bash_profile | 15 +++++++++++++++ bash_lite/.bashrc | 1 + bash_lite/.dir_colors | 1 + bash_lite/.inputrc | 1 + 5 files changed, 19 insertions(+) create mode 120000 bash_lite/.bash_aliases create mode 100644 bash_lite/.bash_profile create mode 120000 bash_lite/.bashrc create mode 120000 bash_lite/.dir_colors create mode 120000 bash_lite/.inputrc diff --git a/bash_lite/.bash_aliases b/bash_lite/.bash_aliases new file mode 120000 index 0000000..d6191b7 --- /dev/null +++ b/bash_lite/.bash_aliases @@ -0,0 +1 @@ +../bash/.bash_aliases \ No newline at end of file diff --git a/bash_lite/.bash_profile b/bash_lite/.bash_profile new file mode 100644 index 0000000..35e1470 --- /dev/null +++ b/bash_lite/.bash_profile @@ -0,0 +1,15 @@ +export EDITOR="/usr/bin/vim" +export PAGER="/usr/bin/less" +export PATH="/home/max/.local/bin:${PATH}" +unset MANPATH + +if [ -n "$BASH_VERSION" ]; then + # include .bashrc if it exists + if [ -f "$HOME/.bashrc" ]; then + . "$HOME/.bashrc" + fi +fi + +if [ -f /etc/bash_completion ]; then + . /etc/bash_completion +fi diff --git a/bash_lite/.bashrc b/bash_lite/.bashrc new file mode 120000 index 0000000..ce16144 --- /dev/null +++ b/bash_lite/.bashrc @@ -0,0 +1 @@ +../bash/.bashrc \ No newline at end of file diff --git a/bash_lite/.dir_colors b/bash_lite/.dir_colors new file mode 120000 index 0000000..a4b0d2d --- /dev/null +++ b/bash_lite/.dir_colors @@ -0,0 +1 @@ +../bash/.dir_colors \ No newline at end of file diff --git a/bash_lite/.inputrc b/bash_lite/.inputrc new file mode 120000 index 0000000..f00edbb --- /dev/null +++ b/bash_lite/.inputrc @@ -0,0 +1 @@ +../bash/.inputrc \ No newline at end of file -- 2.44.0