Initial commit

This commit is contained in:
2023-04-18 21:30:43 +02:00
commit 8a54eb45e8
32 changed files with 3636 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#!/usr/bin/env bash
if (( $# == 1 )); then
name="$1"
echo "Hello, ${name}"
else
echo "Usage: error_handling.sh <person>"
exit 1
fi