bash : cd : too many arguments [closed] bash : cd : too many arguments [closed] bash bash

bash : cd : too many arguments [closed]


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.)