mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-28 19:25:25 -07:00
8 lines
124 B
Bash
8 lines
124 B
Bash
start_spinner() {
|
|
$CURRENT_DIR/tmux_spinner.sh "$1" "$2" &
|
|
export SPINNER_PID=$!
|
|
}
|
|
|
|
stop_spinner() {
|
|
kill $SPINNER_PID
|
|
}
|