From 75ed7b4f86cd883f32b88d5613ff46d8a21f6794 Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Thu, 12 Sep 2019 23:10:58 -0400 Subject: Split my shell configuration into multiple files and a build script to generate for multiple shells --- shell/build.sh | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 shell/build.sh (limited to 'shell/build.sh') diff --git a/shell/build.sh b/shell/build.sh new file mode 100755 index 0000000..85b648c --- /dev/null +++ b/shell/build.sh @@ -0,0 +1,28 @@ +#!/bin/sh + +cat \ + notice \ + ksh \ + aliases \ + utils \ + colors \ + misc \ + update \ + conf \ + > ../mkshrc + +cat \ + notice \ + aliases \ + utils \ + colors \ + bash \ + > ../bashrc + +cat \ + notice \ + aliases \ + utils \ + colors \ + ash \ + > ../ashrc -- cgit v1.2.3