1

For some reason, many command I try to execute I get command not found I've tried touch, mkdir, sudo, ln -s all the same result

ilyas-mac-pro:~ ilya$ mkdir bla
-bash: mkdir: command not found
ilyo
  • 143
  • 1
  • 7

1 Answers1

5

You changed your $PATH (more about it). Try to enter the full path of commands, e.g. /bin/mkdir (or /usr/bin/mkdir, not sure right now).

echo $PATH to see the current path variable value.

export PATH=/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/X11/bin for a sane value.

Check your shell init files, e.g. .profile or .bash_profile for lines like the export PATH=... above and remove them.

Daniel Beck
  • 109,300
  • 14
  • 287
  • 334
  • To add to Daniel's answer, the proper default for $PATH in OSX is /usr/bin – Yitzchak Aug 03 '11 at 16:06
  • @Yitzchak: The default PATH on OS X 10.6 is `/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin`. It should *always* include at least `/usr/bin:/bin:/usr/sbin:/sbin` since the "standard" system binaries are spread between those 4 directories. – Gordon Davisson Aug 04 '11 at 04:51
  • I stand corrected. I haven't used OSX since leopard. – Yitzchak Aug 04 '11 at 15:59