#DevOps Bash Scripts This Repo contains simple Bash scripts created during my DevOps learning.
##Scripts
- #!/bin/bash
- script.sh - first Bash script
How to Run:
chmod +x script.sh ./script.sh
Explications:
$# -> nr total de argumente $@ -> toate argumentele ca lista for name in "$@" -> itereaza prin fiecare argument exit 0, exit 1 -> cod de succes, eroare
Description
Languages
Shell
93.9%
Python
6.1%