8 lines
216 B
Bash
8 lines
216 B
Bash
|
#!/bin/bash
|
||
|
echo "$USER .bashrc"
|
||
|
|
||
|
# processing user's shell directory
|
||
|
[[ $BASH_SHELL_BASE_SOURCED = true ]] && \
|
||
|
BASH_SHELL_USER=${BASH_SHELL_USER:-"bash/shell"} && \
|
||
|
shell_process_directory "$HOME/$BASH_SHELL_USER"
|