8 lines
87 B
Bash
8 lines
87 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e -o pipefail
|
||
|
|
||
|
|
||
|
echo "Shutting down Sauce Connect tunnel"
|
||
|
killall sc
|