Files
bashtutor/test_module/greetin.sh
2024-06-08 11:38:03 +02:00

14 lines
205 B
Bash

function description() {
echo "Enter 'echo hello world'"
}
function hint() {
echo with your keyboard
}
function validate() {
if [ "$*" == "echo hello world" ]; then
return 1
fi
}