12 lines
505 B
Bash
Executable file
12 lines
505 B
Bash
Executable file
#!/bin/sh
|
|
# Get current ISO for
|
|
# various linux distros
|
|
|
|
case $1 in
|
|
debian) wget -c "https://cdimage.debian.org/cdimage/weekly-builds/amd64/iso-cd/debian-testing-amd64-netinst.iso" ;;
|
|
ubuntu) links "https://ubuntu.com/download/desktop/" ;;
|
|
arch) links "https://geo.mirror.pkgbuild.com/iso/" ;;
|
|
mint) links "https://mirrors.edge.kernel.org/linuxmint/stable/" ;;
|
|
void) links "https://repo-default.voidlinux.org/live/current/" ;;
|
|
*) echo "Usage: wget-iso <arch/mint/void...>" ;;
|
|
esac
|