4
I’m using the Terminal
in the Linux
and I’m tired of repeating the same commands all the time.
For example, I use a command practically all day, then I create an alias to make things easier.
Example:
alias tt="php artisan tinker --env=local"
alias artisan="php artisan --env=local"
However, every time the Terminal
is closed, these shortcuts "go to the bag". Then I have to set everything up again when I open the Terminal
or I restart my Ubuntu
;
How can I leave these Aliases
global? Is there any way to do this?
You can say it’s not "within the scope," but I use it every day to program, use!
– Wallace Maxters