Open debek opened 4 years ago
It does.
# Downloading latest version of Winbox from Mikrotik's website.
# The URL of the file is parsed from https://mikrotik.com/download
wbDl() {
if [[ -f winbox.exe ]]
then
echo "Using previously downloaded winbox.exe"
else
echo -n "Downloading Winbox..."
URL="https://mt.lv/winbox"
if [[ $(uname -a | grep -o "x86_64") ]]; then
URL=${URL}64
fi
wget -q -c -O winbox.exe $URL
echo "DONE"
fi
}
It should download 32bit version to correct work.