-
Notifications
You must be signed in to change notification settings - Fork 1
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
Aliases set in ~/.bash_profile not recognized on macOS #6
Comments
I've got this problem as well, using zsh |
Same problem on Ubuntu 16.04, it does not recognize alias set in ~/.bash_aliases. |
I'll try to check it, but I think we just have to include |
Any updates on this? I am lacking the coding skills, but this would be a huge improvement for me. |
same problem one year after |
I'm experiencing aliases not being recognized when using MacOS as well. Many discussions about the following files relating to
An alias example would be to do a task that takes longer if typed out manually as opposed to a keyword that can run that very same long command (like so):
|
no solution? |
please explain how to do this |
I could not make it read aliases, but creating a shell script in /usr/local/bin (or any other bin location), solved my problem with running custom commands on Cerebro.
So running upper lower_case_string, outputs LOWER_CASE_STRING |
why are you trying zsh to read bash files? just put the aliases on |
Recently hd the same problem, @sebolio comment helped me. if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi |
Still the same problem. |
Says "command not found".
Normal commands works fine
The text was updated successfully, but these errors were encountered: