quite wget

This commit is contained in:
lordwelch 2017-11-30 20:41:28 -07:00
parent db641feb70
commit 5f90781b33

View File

@ -41,7 +41,7 @@ func main() {
url := strings.TrimSpace(scanner.Text())
torrentName = filepath.Base(url)
torrentPath = filepath.Join(unselectedDir, torrentName)
cmd := exec.Command("wget", url, "-O", torrentPath)
cmd := exec.Command("wget", url, "-q", "-O", torrentPath)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
err := cmd.Run()