Add bash scripts

This commit is contained in:
2025-10-14 21:38:29 +02:00
commit 0d07d33c59
6 changed files with 88 additions and 0 deletions

7
scripts/hello.sh Normal file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
set -e
read -p "Your name: " name
today=$(date "+%d-%m-%Y")
echo "Hello $name. Today is $today."