This repository has been archived on 2022-02-20. You can view files and clone it, but cannot push or open issues/pull-requests.
2020-11-10 14:09:08 -08:00
|
|
|
#!/bin/bash
|
2020-11-13 10:25:04 -08:00
|
|
|
# echo "$USER .bashrc"
|
2020-11-18 15:32:09 -08:00
|
|
|
# processing user's shell repo if base was loaded
|
|
|
|
[[ $BASH_SHELL_BASE_LOADED = true ]] && \
|
2020-12-03 20:48:04 -08:00
|
|
|
export BASH_SHELL_USER=${BASH_SHELL_USER:-"bash/shell"} && \
|
2020-11-23 12:21:20 -08:00
|
|
|
[[ -d $HOME/$BASH_SHELL_USER ]] && shell_process_directory "$HOME/$BASH_SHELL_USER" ||\
|
|
|
|
echo no user shell directory $HOME/$BASH_SHELL_USER to process, create one or clone a template
|