Skip to content

Instantly share code, notes, and snippets.

@hoangdh
Last active July 7, 2019 15:49
Show Gist options
  • Save hoangdh/e792a096efd79b76df597324880bf458 to your computer and use it in GitHub Desktop.
Save hoangdh/e792a096efd79b76df597324880bf458 to your computer and use it in GitHub Desktop.
Download MinIO Client (mc) in Linux x64 Intel
#!/bin/bash
wget https://dl.min.io/client/mc/release/linux-amd64/mc -O /usr/local/sbin/mc
if [ -f /usr/local/sbin/mc ]
then
chmod +x /usr/local/sbin/mc
echo "Done!"
else
echo "Error: Download faild."
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment