this post was submitted on 01 Oct 2025
595 points (99.3% liked)
Programmer Humor
26673 readers
1766 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
How can a shell alias be undocumented? Type
alias
, there is the oneliner that can't be too complicated due to lack of variables.Nobody write down that if you run the stuff in a different machine, you have to create the alias first.
And once you lose the machine and are trying to restore your backups, you can't run
alias
and discover whatdoThingy
actually does.alias thisdoessomething='cd /home/linuxuser/ && ./myscript.sh'
alias cd='echo "command not found"'
If you try hard enough
This a joke? Cause that won't show up on another machine. Of course it's undocumented.