[2. Basic Shell Programming] translated fix #8

This commit is contained in:
itooww 2017-06-18 23:50:27 +09:00
parent 9e404fc0c2
commit 71a33dca74
1 changed files with 2 additions and 4 deletions

View File

@ -946,10 +946,8 @@ nohup command &
```
# 2. Basic Shell Programming
The first line that you will write in bash script files is called `shebang`. This line in any script determines the script's ability to be executed like a standalone executable without typing sh, bash, python, php etc beforehand in the terminal.
bash スクリプトファイルに書き込み最初の行は、`shebang` (シバン、シェバン) と呼ばれる。
どのスクリプトでも、あらかじめターミナルに sh, bash, python, php など入力しなくても、スタンドアロンの実行可能ファイルのように実行できる。
```bash
#!/bin/bash
```