/* Aminet Get */ parse arg commandline if commandline = "" then do say "Skicka med ett argument, idiotjävel!" exit 5 end open('temp',"T:aminetsearch", 'R') iterator = 0 do while ~eof('temp') line = readln('temp') if iterator = commandline then do runcommand = 'aget http://aminet.driar.se/' || line || " >NIL:" say 'Fetching ' || line leave end iterator = iterator + 1 end address command runcommand close('temp')