Tell us what’s happening:
I have a bug on the bash course, this is my code:
#!/bin/bash
#Program to run my other four programs
./questionnaire.sh
./countdown.sh 3
./bingo.sh
./fortune.sh
and this is the task:
Learn Bash Scripting by Building Five Programs
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:
Your code so far
Your browser information:
User Agent is: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:149.0) Gecko/20100101 Firefox/149.0
Challenge Information:
Build Five Programs - Build Five Programs
Learn Bash Scripting by Building Five Programs
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