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
We have been doing pushd &> /dev/null, because we don't want to echo to the screen when the dir change.
pushd &> /dev/null
However, this will also hide error an error when the dir doesn't exist.
&> /dev/null
> /dev/null
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We have been doing
pushd &> /dev/null
, because we don't want to echo to the screen when the dir change.However, this will also hide error an error when the dir doesn't exist.
&> /dev/null
to> /dev/null
The text was updated successfully, but these errors were encountered: