Velvet Star Monitor

Standout celebrity highlights with iconic style.

news

bash : cd : too many arguments [closed]

Writer Andrew Henderson

if i need to go to my directory named as"exception handling" then i write (cd exception handling) but it gives error too many arguments

2

1 Answer

Use quotes:

cd "new folder"

or escape the space:

cd new\ folder

(That being said, cd does not open a file but changes the working directory.)

1