Created
March 16, 2020 22:53
-
-
Save xhiroga/05129f08bb76c492cce49e6fd7b95795 to your computer and use it in GitHub Desktop.
cheatsheets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Reference | |
# TBD... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# シェル変数 | |
# 英数字とアンダースコアが利用可能だが、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