URLをまとめて短縮
Nid: 84
bash functionに登録してgoo.glを使います。
# Google URL shortener
function googl() { curl https://www.googleapis.com/urlshortener/v1/url -H 'Content-Type: application/json' -d '{"longUrl": "'$1'"}'| egrep -o 'http://goo.gl/[^"]*' ; }
ex.ファイルからURLのリストをまとめて読込み、一括で短縮する。
$ cat url.txt | while read line; do googl $line; done