Learn Advanced Bash by Building a Kitty Ipsum Translator - Build a Kitty Ipsum Translator

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

can you show us a screenshot of your vscode so we can see the terminal and what you typed into it, the instructions and the fully expanded hint?

As requested screen captures below :slightly_smiling_face:

you mentioned that you reset the terminal? Did that involve clicking on the Reset button? (or something else)?

I clicked the reset button in CodeRoad, shut down the terminal and then opened a new terminal and have also completely restarted the workshop from scratch a number of times

Hello, in name.txt file instead of your name use freeCodeCamp. The asset is set to check freeCodeCamp as a name.

1 Like