I'm using Terminal
in Linux
and I'm tired of repeating the same commands all the time.
For example, I use a command almost all day, so 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". So I have to define everything again when I open Terminal
again or restart my Ubuntu
;
How can I make these% global%? Do you have any way to do this?