0

I cannot change directory like this

https://i.stack.imgur.com/PlATo.png

I have a problem like this:

https://i.stack.imgur.com/CSobh.png

Zanna
  • 70,465
  • 2
    Please don't post screenshots of text. Copy the text here and apply code formatting instead. – muru Nov 11 '16 at 07:39

1 Answers1

4

It's because you're passing two arguments to cd. The cd Ashikur Rahman (notice the space) for most commands is something like two separate commands: cd Ashikur; cd Rahman (in cd case 2-nd argument would be just ignored though).

You'd have to enclose the part with space into quotes, like:

$ cd "Ashikur Rahman"
Hi-Angel
  • 3,702
  • 1
  • 29
  • 36