Gibran Malheiros 2018-01-03 16:21:51 +01:00 committed by Adnan Ahmed
parent 017a050473
commit 659b9b2d51
1 changed files with 1 additions and 1 deletions

View File

@ -934,7 +934,7 @@ nohup command &
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. 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 ```bash
#!/bin/bash #!/usr/bin/env bash
``` ```
## 2.1. Variables ## 2.1. Variables