Bash Alias Examples: Because You're a Lazy Human

Here are some examples of useful Bash aliases for the lazy human:

1. `ll` - List Long Format

A handy alias for listing files in a long format. Because who needs the default output, anyway?

            alias ll="ls -alh | more"
        

2. `gf` - Get Files

Find all files, no matter where they are, no matter the case.

            alias gf="find . -type f -print"
        

3. `df` - Delete Files

For when you need to delete a file, but don't care about the details.

            alias df="rm -i"
        

Keep scrolling for more!