Run scripts from elsewhere
Quest: run-scripts-from-elsewhere
Mission
Change to ~/playground, then run maker-report.sh with a quoted title using its home-anchored ~/... path.
Commands You Will Use
cd
Steps
- Run
guide nowso this quest is assigned before you create evidence. - Run
cd ~/playground. - Run
~/scripts/maker-report.sh "Elsewhere Report". - Run
guide check.
Hints
- Your current directory and the script path answer different questions.
~/scripts/maker-report.shpoints to the same file from anywhere in your home../maker-report.shwould mean a file in~/playground; the home-anchored path reaches the script in~/scripts.bash ~/scripts/maker-report.sh "Elsewhere Report"also works, but direct execution proves the script is executable.
If Check Fails
Run cd ~/playground, then ~/scripts/maker-report.sh "Elsewhere Report". Run guide check promptly after those successful commands.

Linux Foundations