We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
\
Location within the Book
Hint: Page numbers change all the time. The best way to report an issue is by chapter, section, and subsection numbers.
sudo mkdir -p /etc/paths.d && \ echo /Applications/Postgres.app/Contents/Versions/latest/bin | \ sudo tee /etc/paths.d/postgresapp
Give me this error: -bash: sudo: command not found
-bash: sudo: command not found
Remove the \, it works better all in a single line
sudo mkdir -p /etc/paths.d && echo /Applications/Postgres.app/Contents/Versions/latest/bin | sudo tee /etc/paths.d/postgresapp
OR make sure that you have a new line after each line (must work with copy/paste), like this:
Paolo Brocco
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Location within the Book
Hint: Page numbers change all the time. The best way to report an issue is by chapter, section, and subsection numbers.
Description
sudo mkdir -p /etc/paths.d && \ echo /Applications/Postgres.app/Contents/Versions/latest/bin | \ sudo tee /etc/paths.d/postgresapp
Give me this error:
-bash: sudo: command not found
Possible Solutions
Remove the
\
, it works better all in a single linesudo mkdir -p /etc/paths.d && echo /Applications/Postgres.app/Contents/Versions/latest/bin | sudo tee /etc/paths.d/postgresapp
OR make sure that you have a new line after each line (must work with copy/paste), like this:
Your full name so we can provide accurate credit within the book
Paolo Brocco
The text was updated successfully, but these errors were encountered: