#!/usr/bin/env bash # file: getsonar.sh - get sonar alpha distro with curl. wget -bc --trust-server-names --max-redirect=10000 --tries=0 "https://sourceforge.net/projects/sonargnulinux/files/latest/download" Could I be doing any better with wget in this script to handle sourceforge.net downloads? For those that don't know, the --trust-server-names switch is in that script so you get an iso with the same name you found it under on sourceforge.net. Otherwise sourceforge.net renames your download and then finding it gets difficult. I send the output to wget-log files since I have a means of using wc on those files to count line numbers to tell me if sourceforge.net is still downloading or has stopped. If it stopped that same wget-log file using tail -3 wget-log will give me the final results of my download attempt. -- _______________________________________________ Blinux-list mailing list Blinux-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/blinux-list