6 lines
117 B
Bash
6 lines
117 B
Bash
#This is used to reload the instance
|
|
TRAPUSR1() {
|
|
if [[ -o INTERACTIVE ]]; then
|
|
exec "${SHELL}"
|
|
fi
|
|
}
|