Skip to content

Instantly share code, notes, and snippets.

@erukiti
Created December 10, 2014 11:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erukiti/25a77c41408bcf8626b1 to your computer and use it in GitHub Desktop.
Save erukiti/25a77c41408bcf8626b1 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"io/ioutil"
"net/http"
"os"
"strings"
)
func downloader(url string) {
tmp := strings.Split(url, "/")
fileName := tmp[len(tmp)-1]
resp, err := http.Get(url)
if err != nil {
fmt.Println(err)
return
}
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
fmt.Println(err)
return
}
ioutil.WriteFile(fileName, body, 0644)
}
func main() {
// url := "http://yukkurisinai.net/gopher.png"
for _, url := range os.Args[1:] {
downloader(url)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment