diff --git a/keep_trying.sh b/keep_trying.sh new file mode 100755 index 0000000..01079eb --- /dev/null +++ b/keep_trying.sh @@ -0,0 +1,3 @@ +#!/bin/sh +# one-lienr to attempt to connect to wifi network, and keep trying until it succeeds +nmcli con up || while [ "$?" != "0" ]; do nmcli con up ; done