diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2019-09-12 23:10:58 -0400 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2019-09-12 23:10:58 -0400 |
| commit | 75ed7b4f86cd883f32b88d5613ff46d8a21f6794 (patch) | |
| tree | d38260dd255458b2a02193d4e0e2e0f6fe9f6027 /shell/build.sh | |
| parent | 879d857e0eafa1f716d9e156862154baf49d7655 (diff) | |
| download | dotfiles-75ed7b4f86cd883f32b88d5613ff46d8a21f6794.tar.gz dotfiles-75ed7b4f86cd883f32b88d5613ff46d8a21f6794.tar.xz | |
Split my shell configuration into multiple files and a build script to generate for multiple shells
Diffstat (limited to 'shell/build.sh')
| -rwxr-xr-x | shell/build.sh | 28 |
1 files changed, 28 insertions, 0 deletions
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 |
