Here are some examples of useful Bash aliases for the lazy human:
A handy alias for listing files in a long format. Because who needs the default output, anyway?
alias ll="ls -alh | more"
Find all files, no matter where they are, no matter the case.
alias gf="find . -type f -print"
For when you need to delete a file, but don't care about the details.
alias df="rm -i"
Keep scrolling for more!