Last active
December 22, 2024 15:40
-
-
Save danfoust/dd48681fa48d1ffb397a40f9d572779c to your computer and use it in GitHub Desktop.
Useful shell aliases
This file contains 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
# Copy last command | |
alias copy_last_cmd="fc -ln -1 | tr -d '\n' | xclip -selection clipboard" | |
# Disk usage | |
alias usage='du -ch | grep total' | |
# Permissions | |
alias perm='stat -c "%a %n" *' | |
# Print $PATH entries on newlines | |
alias path='echo -e ${PATH//:/\\n}' | |
# Print current timestamp | |
alias now='date +"%Y-%m-%d %H:%M:%S"' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment