Skip to content

Instantly share code, notes, and snippets.

@iKunalmathur
Last active July 5, 2023 07:42
Show Gist options
  • Save iKunalmathur/081a5bce9b139ca03749cd28ec51c4b8 to your computer and use it in GitHub Desktop.
Save iKunalmathur/081a5bce9b139ca03749cd28ec51c4b8 to your computer and use it in GitHub Desktop.
Bash aliases
# ----------------------
# Artisan Command Aliases
# ----------------------
alias pa='php artisan'
alias pas='php artisan serve'
alias pao='php artisan optimize'
alias paoc='php artisan optimize:clear'
# ----------------------
# npm Command Aliases
# ----------------------
alias nrd='npm run dev'
alias nrs='npm run start'
alias nrb='npm run build'
alias nre='npm run export'
# ----------------------
# Custom Command Aliases
# ----------------------
alias cc='clear'
alias explore='ls -la'
@iKunalmathur
Copy link
Author

sudo nano ~/.bashrc

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment