![]() |
|
Tutorial How To Download ALL Roms from edgeemu.net - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Sharing (https://sinister.li/Forum-Sharing) +--- Forum: Games (https://sinister.li/Forum-Games) +--- Thread: Tutorial How To Download ALL Roms from edgeemu.net (/Thread-Tutorial-How-To-Download-ALL-Roms-from-edgeemu-net) |
How To Download ALL Roms from edgeemu.net - sunjester - 02-05-2019 I recently wanted to make sure I had all the SNES roms and update my repo. I made this script to get all the ones from the edgeemu website Code: #!/bin/sh
for i in `seq 1 57623`;
do
wget --content-disposition "https://edgeemu.net/download.php?id="$i
clear;du -s .
doneIt will clear the screen and show the size of the directory, but you can remove that part lol |