I have a sh that is meant to run in linux.
But im using windows, and I must be able to run it in windows
Theres a piece of code that does the following
while ! nc -z localhost 3300; do
echo "Waiting for MariaDb"
sleep 0.1
done
But im unable to replicate it in windows since nc doesnt work.
What is the alternative to the exact command?