Tell us what’s happening:
I am getting this error even though scripts are running fine:
Your script should have the suggested commands added correctly
This is instructions:
Add commands to run the rest of your scripts in the file. They should be in this order: questionnaire, countdown, bingo, and fortune. Don’t forget that your countdown.sh file needs an argument, so put a 3 next to it.
1. Your five.sh file should have these commands:
./questionnaire.sh
./countdown.sh 3
./bingo.sh
./fortune.sh
Your code so far
#!/bin/bash
# Program to run my other four programs
./questionnaire.sh
./countdown.sh 3
./bingo.sh
./fortune.sh
Lesson URL (https://raw.githubusercontent.com/freeCodeCamp/learn-bash-scripting-by-building-five-programs/main/tutorial.json)