Nice job! Run it again, redirect the stderr to the same place and the stdout to stdout.txt
1. You can redirect stdout with >
2. Here’s an example: <commands> 2> <filename> > <filename>
3. The previous command was ./script.sh < name.txt 2> stderr.txt
4. Add > stdout.txt to the end of the previous command
5. Enter ./script.sh < name.txt 2> stderr.txt > stdout.txt in the terminal
camper: /project$ ./script.sh < name.txt 2> stderr.txt > stdout.txt
this is step 37 I believe I have found a bug having both typed the command and also copied it from the hints, I have reset the terminal a number of times reset the tutorial via coderoad and also completely restarted this workshop and I get stuck as this same point every time

