Files
.profile/linux_aliases.md
2025-10-30 20:31:57 +00:00

539 B

My Linux Aliases

Docker

Better Docker PS

A custom 'docker ps' command which is also shorter in the command and in the output. cuz why not.

alias dps='docker ps --format "table {{.Names}}\t{{.Image}}\t{{.RunningFor}}\t{{.Status}}"'

Git

Quick Git Status

Such command HAS to have a short version...

alias gs='git status'

Quick Git Log (--oneline)

When needing to get the hash of a certain commit or just check where your HEAD/remote repo is - also worth having a short version...

alias gl='git log --online'