Skip to content

Instantly share code, notes, and snippets.

View BrixSat's full-sized avatar
🎯
Need to focus on photobooth!

BrixSat BrixSat

🎯
Need to focus on photobooth!
View GitHub Profile
@BrixSat
BrixSat / clone.sh
Created December 31, 2024 09:57
Download all versions (excluding rc) available from mikrotik site.
#!/bin/bash
function downloadFile
{
url="${1}"
# If url starts with //
if [[ "${url}" = "//"* ]]
then
url="https:${url}"
fi