Skip to content

Instantly share code, notes, and snippets.

@Bhavdip
Created May 30, 2017 08:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Bhavdip/666ffad803fafa0e57215d6f0ef76d14 to your computer and use it in GitHub Desktop.
Save Bhavdip/666ffad803fafa0e57215d6f0ef76d14 to your computer and use it in GitHub Desktop.
[ls: command not found] #tags:Linux
https://superuser.com/questions/1061765/getting-the-following-error-when-using-ls-in-mac-terminal-bash-ls-command-no
cd & exit are shell builtins. ls is typically installed in /bin. /bin is missing from your path.
export PATH=/bin:/usr/bin:$PATH
should fix it.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment