Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mac OS X Terminal - "cd.." does not work in terminal [closed]

Tags:

linux

bash

macos

Currently, the "cd.." command no longer seems to be operating on my Mac.

See error below:

ShanMacBook-Pro:Documents ShanMacbookPro$ cd.. -bash: cd..: command not found

Not sure if it is a path issue:

Shan-MacBook-Pro:Documents ShanMacbookPro$ echo $PATH /usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/git/bin

My machine:

  • Macbook Pro Late 2014
  • Yosemite 10.10.4
  • NodeJS installed
  • MeteorJS installed
  • Git installed
like image 732
Shan Batla Avatar asked Dec 24 '22 16:12

Shan Batla


1 Answers

Use cd ..

You need a space between the cd and the ..

Let me know if that helps!

like image 54
Evan Avatar answered Dec 27 '22 07:12

Evan