Files
ZDTT/example_aliases
2025-09-30 23:22:11 -04:00

39 lines
604 B
Plaintext

# ZDTT Terminal Aliases
# Format: alias_name=command
#
# Example aliases for common tasks:
# Git shortcuts
g=git
gs=git status
ga=git add
gc=git commit
gp=git push
gl=git log --oneline
gd=git diff
# File operations
ll=ls -la
la=ls -A
l=ls -CF
# Navigation shortcuts
..=cd ..
...=cd ../..
~=cd ~
# System shortcuts
update=sudo apt-get update && sudo apt-get upgrade -oszdtt
ports=netstat -tuln -oszdtt
process=ps aux -oszdtt
# Useful aliases
h=history
c=clear
grep=grep --color=auto
# Custom commands - modify these to your needs!
# myproject=cd ~/projects/myproject
# deploy=./deploy.sh -oszdtt