15 lines
339 B
Bash
15 lines
339 B
Bash
#!/bin/bash
|
|
set -x
|
|
COMPANYLOCATION="$4" #Autostadt GmbH
|
|
|
|
LOCATIONTEST=$(networksetup -listlocations | grep -c "Automatic")
|
|
if [ "$LOCATIONTEST" -gt 0 ]
|
|
then
|
|
(sleep 8 ; networksetup -deletelocation Automatic ) &
|
|
(sleep 2 ; networksetup -switchtolocation "$COMPANYLOCATION") &
|
|
else
|
|
networksetup -switchtolocation "$COMPANYLOCATION"
|
|
fi
|
|
|
|
|