You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
host=mysql; port=3306; start=$$(date +%s); while true; do if (echo -n > /dev/tcp/$$host/$$port)>/dev/null 2>&1 ; then echo done; break; else echo trying again after $$(($$(date +%s) - $$start)) seconds for $$host:$$port; sleep 1; fi; done; echo available after $$(($$(date +%s) - $$start)) seconds;
host=mysql; port=3306; start=$$(date +%s); while true; do if (echo -n > /dev/tcp/$$host/$$port)>/dev/null 2>&1 ; then echo done; break; else echo trying again after $$(($$(date +%s) - $$start)) seconds for $$host:$$port; sleep 1; fi; done; echo available after $$(($$(date +%s) - $$start)) seconds;
0 commit comments