Files
utility_scripts/keep_trying.sh

4 lines
210 B
Bash
Executable File

#!/bin/sh
# one-lienr to attempt to connect to wifi network, and keep trying until it succeeds
nmcli con up <insert_network_name_here> || while [ "$?" != "0" ]; do nmcli con up <insert_network_name_here>; done