Last active
April 16, 2020 17:00
-
-
Save lstellway/7a73027a388490a728a650c8aee65beb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Aliases | |
alias c="clear" | |
alias ll="ls -lah" | |
alias lz="ls -laZ" # include (selinux) security context in listing | |
alias cl="c && ll" | |
alias ..="cd .." | |
# Empty contents of files | |
empty() { | |
for arg in "$@" | |
do | |
cat /dev/null > "$arg" | |
done | |
} |
Author
lstellway
commented
Apr 16, 2020
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment