Last active
April 24, 2025 05:27
-
-
Save Furtim/6c041605c798e5ed94dfcf66ca280734 to your computer and use it in GitHub Desktop.
Useful zsh aliases
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
alias lf="find . -maxdepth 1 -exec du -sh {} \;" | |
alias pr="poetry run" | |
alias mkdir="mkdir -p" # Create parent directories if needed | |
alias grep="grep --color=auto" # Colorize grep output | |
alias cp="cp -i" # Confirm before overwriting | |
alias mv="mv -i" # Confirm before overwriting |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment