You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
280 B
Bash
10 lines
280 B
Bash
2 years ago
|
#!/usr/bin/env bash
|
||
|
# sets enviroment variables on login
|
||
|
CURRENT_LOCATION=$(curl --silent http://ip-api.com/csv)
|
||
|
CITY=$(echo "$CURRENT_LOCATION" | cut -d , -f 6)
|
||
|
LAT=$(echo "$CURRENT_LOCATION" | cut -d , -f 8)
|
||
|
LON=$(echo "$CURRENT_LOCATION" | cut -d , -f 9)
|
||
|
|
||
|
export LAT LON CITY
|
||
|
|