Skip to content

Instantly share code, notes, and snippets.

@xhiroga
Created March 16, 2020 22:53
Show Gist options
  • Save xhiroga/05129f08bb76c492cce49e6fd7b95795 to your computer and use it in GitHub Desktop.
Save xhiroga/05129f08bb76c492cce49e6fd7b95795 to your computer and use it in GitHub Desktop.
cheatsheets
# Reference
# TBD...
# シェル変数
# 英数字とアンダースコアが利用可能だが、1文字目が数字であってはいけない
VAR="variable"
echo "$v"
# 値がなにもない変数
# 以下の2つは等価
VAR_N=
VAR_N=""
# Reference
# [入門UNIXプログラミングシェル](https://amzn.to/33yIXvz)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment