9 lines
401 B
Bash
9 lines
401 B
Bash
### LAST LINE
|
|
echo "Loading .bash_aliases ..."
|
|
|
|
### custom list
|
|
alias ll="ls --group-directories-first -lAh"
|
|
|
|
### Artisan
|
|
alias ar-clear-all='rm -rf ./storage/framework/{cache, sessions, testing, views} && rm -f ./bootstrap/cache/* && php artisan optimize:clear && php artisan cache:clear && php artisan config:clear && php artisan route:clear && php artisan clear-compiled && composer dump-autoload'
|