Alias Hacks
Did you know that you can use shell aliases to automate repetitive tasks?
Here are some of our favorite advanced alias examples:
- alias gl="git status && git add . && git commit -m 'Updated'" - Commit your changes with a single command
- alias ll="ls -al | grep ^-w---" - List files with permissions
- alias ..="/usr/local/bin/mycustomscript.sh" - Run your custom script
Want more? Try our Subpage 1 for more examples!
Or check out our Subpage 2 for even more!