Skip to content

Instantly share code, notes, and snippets.

@fredeerock
Last active May 16, 2019 18:41
Show Gist options
  • Save fredeerock/755d5b6753a1c5bb47b611f9d914070d to your computer and use it in GitHub Desktop.
Save fredeerock/755d5b6753a1c5bb47b611f9d914070d to your computer and use it in GitHub Desktop.
Remove non-activated network connections from NetworkManager.
#!/bin/bash
nmcli -f UUID,STATE con show | tail -n +2 | grep -v activated | awk '{print $1}' | while read line; do nmcli con delete uuid $line; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment