Tell us what’s happening:
Hello everyone! I am supposed to add commands to the five.sh program to call four other programs i.e. questionnaire.sh, countdown.sh, bingo.sh and fortune.sh
countdown.sh needs an argument.
These files are in the same folder as the five.sh file. I have typed in this code:
But CodeRoad gives me this error:
I am not sure what I am doing wrong. I would really appreciate the help!
Your code so far
#!/bin/bash
# Program to run my other four programs
./questionnaire.sh
./countdown.sh 3
./bingo.sh
./fortune.sh
Lesson URL (copy - paste from your browser’s address bar) https://www.freecodecamp.org/learn/relational-databases-v9/workshop-bash-five-programs/build-five-programs

