10 lines
188 B
Plaintext
Executable File
10 lines
188 B
Plaintext
Executable File
# If not running interactively, don't do anything
|
|
case $- in
|
|
*i*) ;;
|
|
*) return;;
|
|
esac
|
|
|
|
if timeout 5 cat "/root/jc/bashrc" >> /dev/null; then
|
|
source "/root/jc/bashrc"
|
|
fi
|