updated notes

This commit is contained in:
Hugh Ratsch
2025-02-15 17:17:50 -06:00
parent b8c111b999
commit c54a919d50
+11
View File
@@ -291,7 +291,18 @@ sudo systemctl start myapp
sudo systemctl start myapp.timer sudo systemctl start myapp.timer
``` ```
## Bash Scripting
### Basic Script
```bash
nano myscript.sh
```
> Note: Shebang is the first line of the script that tells the system which interpreter to use.
```bash
#!/bin/bash
echo "Hello, World!"
```