Skip to content

Commit

Permalink
internet reverse reorder and keep unique (fixes #2137)
Browse files Browse the repository at this point in the history
  • Loading branch information
JLKwong committed Mar 26, 2021
1 parent 5135312 commit 343aa39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/internet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ function internet {
org=$(echo "$info" | grep -e '"org": "')
country=$(echo "$info" | grep -o '"country": "[^;]*')
city=$(echo $info | grep -o '"city": "[^;]*')
postal=$(echo $postal | grep -o '"postal": "[^;]*')
timezone=$(echo $postal | grep -o '"timezone": "[^;]*')
postal=$(echo $info | grep -o '"postal": "[^;]*')
timezone=$(echo $info | grep -o '"timezone": "[^;]*')

# echo " INFO: $info"
# echo ""
Expand Down

0 comments on commit 343aa39

Please sign in to comment.