2
0
Fork 0
mirror of https://github.com/Idnan/bash-guide.git synced 2018-11-09 02:29:39 +01:00

[2.1. Variables] translated fix #9

This commit is contained in:
itooww 2017-06-19 00:12:44 +09:00
parent 71a33dca74
commit 74429c26db

View file

@ -953,15 +953,18 @@ bash スクリプトファイルに書き込み最初の行は、`shebang` (シ
``` ```
## 2.1. Variables ## 2.1. Variables
bash で変数を作成することは他の言語に似ている。
Creating variables in bash is similar to other languages. There are no data types. A variable in bash can contain a number, a character, a string of characters, etc. You have no need to declare a variable, just assigning a value to its reference will create it. データ型は無い。
bash の変数には、数値、文字、文字列などを含めることが出来る。
変数を宣言する必要はなく、参照に値を代入するだけで変数が作成される。
Example: Example:
```bash ```bash
str="hello world" str="hello world"
``` ```
The above line creates a variable `str` and assigns "hello world" to it. The value of variable is retrieved by putting the `$` in the beginning of variable name. 上記の行は変数 `str` を作成し、それに "hello world" を割り当てている。
変数の値は、変数名の先頭に `$` を置くことによって取り出される。
Example: Example:
```bash ```bash