This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Fetch list of connected devices from Xfinity router ARRIS TG4482A | |
# Usage: | |
# ./get_connected_devices.sh USERNAME PASSWORD [--verbose] | |
USERNAME="$1" | |
PASSWORD="$2" | |
VERBOSE=false | |
if [[ "$3" == "--verbose" ]]; then |