-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
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
Use builtin history
instead of history
#55
Comments
Yeah. Or
Cons: It slows down everything a bit, and you need to take care of quoting in combination with some builtins. And what about: alias builtin='echo alias'; function builtin { echo func; }; |
rcaloras
added a commit
that referenced
this issue
Sep 23, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Some users like to redefine bash builtins, so it's unsafe to use them without saying
builtin
first. Here's an issue report where a user had defined an alias forhistory
and it brokebash-preexec
: https://gitlab.com/gnachman/iterm2/issues/6063What do you think about replacing the use of
history
withbuiltin history
?The text was updated successfully, but these errors were encountered: