Create Simple Aliases for Long Commands
What This Does
Create a short name for a long command so you can type the short name instead of the full command every time.
Why It's Useful
Turn friction into muscle memory. Replace long, complex commands with short, memorable aliases you can type quickly.
How to Do It
- Type
alias shortname='long command here' - For example:
alias ll='ls -la' - Now typing
llrunsls -la - Type
aliasto see all your aliases
Try This Now
Create an alias with alias home='cd ~', then type home and press Enter. You'll jump to your home directory instantly.
Mental Hook: Turn friction into muscle memory.