mirror of
https://github.com/Idnan/bash-guide.git
synced 2018-11-09 02:29:39 +01:00
[2. Basic Shell Programming] translated fix #8
This commit is contained in:
parent
9e404fc0c2
commit
71a33dca74
1 changed files with 2 additions and 4 deletions
|
@ -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
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue