> For the complete documentation index, see [llms.txt](https://paul-gleason.gitbook.io/bash/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://paul-gleason.gitbook.io/bash/basic/starter-template.md).

# Starter Template

### Steps to make Bash script

1. `vi ./{file_name}.sh`

&#x20; Enter in code

```
#!/bin/bash

echo hello
```

&#x20;  This will make the file executable

&#x20;  2\. `chmod +x ./{file_name}.sh`

&#x20;  This will run the script

&#x20;  3\. `./{file_name}`

&#x20;  Example output

```
hello
```
