cli.fail

Practice this fail.

One folder. Two arguments.

Bash · Restart as often as you like

Read the error, choose a command, and learn
why it works. Nothing runs on your machine.

Browse all practice ↗

In Bash, the directory release notes exists directly under your current directory.

One folder. Two arguments.

$ cd ./release notes

bash: cd: too many arguments

How do you enter that one directory?

3 attempts remaining

Read why this fix works

One folder. Two arguments.

cd -- "./release notes"

Quotes keep the space inside one shell argument. cd -- "./release notes" therefore receives one directory name. Here -- also ends option parsing, keeping the directory argument separate from any cd options.

Practice rounds do not affect the daily score or local streak. Try today’s challenge, or choose another scenario.

Copy your result