Skip to content

Instantly share code, notes, and snippets.

@ideodora
Last active August 29, 2015 14:08
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 ideodora/0e6bc3c5a36a55759455 to your computer and use it in GitHub Desktop.
Save ideodora/0e6bc3c5a36a55759455 to your computer and use it in GitHub Desktop.
shell ""(ダブルクオーテーション)''(シングルクオーテーション)``(バッククオーテーション)
# HOGE="pwd"として
echo "$HOGE"
#>> pwd
# 変数展開する
echo '$HOGE'
#>> $HOGE
# 変数展開しない
echo `pwd`
#>> /Users/whoami
# コマンドとして実行する
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment