From c54a919d507696c958cd427bb83697ca97b5af48 Mon Sep 17 00:00:00 2001 From: Hugh Ratsch Date: Sat, 15 Feb 2025 17:17:50 -0600 Subject: [PATCH] updated notes --- src/rhcsa.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/rhcsa.md b/src/rhcsa.md index 33b6361..b6c6a14 100644 --- a/src/rhcsa.md +++ b/src/rhcsa.md @@ -291,7 +291,18 @@ sudo systemctl start myapp 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!" +```