mriza / winbox-installer

Install winbox in fedora/ubuntu linux, using wine
MIT License
194 stars 73 forks source link

winbox-installer download 64bit version #25

Open debek opened 4 years ago

debek commented 4 years ago

It should download 32bit version to correct work.

jaydio commented 2 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
}