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
(1) Add $(!!), recomputes last command
Comes in handy for things like these:
$ which python /usr/bin/python $ ls -l $(!!) ls -l $(which python) lrwxrwxrwx 1 root root 7 Apr 15 2020 /usr/bin/python -> python2
(2) Or find filename on whole file system, suppressing 'Permission denied' errors:
find / -name filename 2>&1 | grep -v 'Permission denied'
The text was updated successfully, but these errors were encountered:
@deinonychus feel free to submit a PR
Sorry, something went wrong.
No branches or pull requests
(1) Add $(!!), recomputes last command
Comes in handy for things like these:
(2) Or find filename on whole file system, suppressing 'Permission denied' errors:
find / -name filename 2>&1 | grep -v 'Permission denied'
The text was updated successfully, but these errors were encountered: