3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ある名前の heroku アプリが作成可能かどうか調べる

Last updated at Posted at 2013-08-17
can-create-heroku-app-with-the-name-of
# !/bin/bash

curl -I $1.herokuapp.com 2> /dev/null | grep 'HTTP/1.1 404' > /dev/null

使い方

if ./can-create-heroku-app-with-the-name-of kaosf-env-var
then
  echo 'ok'
else
  echo 'already exist!'
fi

出力: already exist!

確かにこの名前のアプリは存在します. http://kaosf-env-var.herokuapp.com

if ./can-create-heroku-app-with-the-name-of zettaisonzaisinaitoomou
then
  echo 'ok'
else
  echo 'already exist!'
fi

出力: ok

現時点ではこの名前のアプリは存在しませんね. http://zettaisonzaisinaitoomou.herokuapp.com

誰か意地悪な人が作っちゃったらこのサンプルは結果が変わります>< ご了承下さい.

Heroku のアプリ作成を動的にやらないといけないときにお使い下さい.

3
3
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?