URLをまとめて短縮

Nid: 84
  • Posted on: 28 July 2014
  • By: nayeli
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