参考: http://dev.classmethod.jp/smartphone/android/gcm/
わざわざサーバを立てなくても curl コマンドで配信することができる。便利。
$ curl --header "Authorization: key={API Key}" \
--header Content-Type:"application/json" \
https://android.googleapis.com/gcm/send \
-d "{\"registration_ids\":[\"{Registration ID}\"],\"data\":{\"message\":\"Hello\"}}"