8 lines
371 B
Bash
8 lines
371 B
Bash
#!/bin/bash
|
|
# echo "$USER .bashrc"
|
|
# processing user's shell repo if base was loaded
|
|
[[ $BASH_SHELL_BASE_LOADED = true ]] && \
|
|
export BASH_SHELL_USER=${BASH_SHELL_USER:-"bash/shell"} && \
|
|
[[ -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
|