Practice this fail.
Parents are required.
Linux · Restart as often as you like
Read the error, choose a command, and learn
why it works. Nothing runs on your machine.
Using GNU mkdir, create ./build/reports/daily. Some parents may be missing, and existing directories should not cause an error.
Parents are required.
$ mkdir ./build/reports/daily
No such file or directory
How do you create the missing parent directories too?
Fixed. By hand.
mkdir -p ./build/reports/dailymkdir -p creates missing parents and does not fail merely because the requested directory already exists. It does not make an existing regular file into a directory.
Practice does not affect your daily score or streak.