Test your understanding
Bash scripts are evaluated one statement at a time. Take a minute to think through what the file descriptors are pointing at each point in this example.
while [[ True ]]; do
echo "running a loop!"
echo $(date) >> /tmp/date.log
fooblarbalurg 2> /tmp/error.log
sleep 5
done