mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
10 lines
No EOL
414 B
Text
10 lines
No EOL
414 B
Text
INFO=" |FreeBSD|Independent||https://www.freebsd.org/|Operating system used to power modern servers, desktops, and embedded platforms.";;
|
|
|
|
function releases_freebsd(){
|
|
local FBSD_RELEASES=$(curl -sL https://download.freebsd.org/ftp/releases/amd64/amd64/ISO-IMAGES/|grep -e 'class="link"' |grep -v '\.\.'|cut -d\" -f4|tr -d '/')
|
|
echo ${FBSD_RELEASES}
|
|
}
|
|
|
|
function editions_freebsd(){
|
|
echo disc1 dvd1
|
|
} |