Tell us what’s happening:
I’m stuck on 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.
- Your five.sh file should have these commands:
./questionnaire.sh
./countdown.sh 3
./bingo.sh
./fortune.sh , and this is my five.sh
#!/bin/bash
#Program to run my other four programs
./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
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36
Challenge Information:
Build Five Programs - Build Five Programs
