Files
bash-tut/teil16/simple-func.sh
2024-09-22 12:16:16 +02:00

14 lines
122 B
Bash
Executable File

#! /usr/bin/bash
# File: simple-func.sh
function hallo() {
echo "Hallo 1"
echo "-------"
}
hallo
hallo
hallo
hallo