Skip to content

Instantly share code, notes, and snippets.

@danfoust
Last active December 22, 2024 15:40
Show Gist options
  • Save danfoust/dd48681fa48d1ffb397a40f9d572779c to your computer and use it in GitHub Desktop.
Save danfoust/dd48681fa48d1ffb397a40f9d572779c to your computer and use it in GitHub Desktop.
Useful shell aliases
# 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