wiki.bash-hackers.org/misc/shell_humor.markup

53 lines
946 B
Plaintext
Raw Normal View History

2023-04-15 13:23:49 +02:00
====== Shell Humor ======
Nothing special, just my private collection of some more or less funny shell stuff I saw during the years.
Usually Bash and/or Linux (GNU Toolset) specific.
2023-04-15 13:53:05 +02:00
<code>
2023-04-15 13:23:49 +02:00
$ %blow
-bash: fg: %blow: no such job
2023-04-15 13:53:05 +02:00
</code>
2023-04-15 13:23:49 +02:00
2023-04-15 13:53:05 +02:00
<code>
2023-04-15 13:23:49 +02:00
$ ar m god
ar: creating god
2023-04-15 13:53:05 +02:00
</code>
2023-04-15 13:23:49 +02:00
2023-04-15 13:53:05 +02:00
<code>
2023-04-15 13:23:49 +02:00
$ touch /pussy
touch: cannot touch `/pussy': Permission denied
2023-04-15 13:53:05 +02:00
</code>
2023-04-15 13:23:49 +02:00
2023-04-15 13:53:05 +02:00
<code>
2023-04-15 13:23:49 +02:00
$ mount; fsck; fsck; fsck; umount; sleep
2023-04-15 13:53:05 +02:00
</code>
2023-04-15 13:23:49 +02:00
2023-04-15 13:53:05 +02:00
<code>
2023-04-15 13:23:49 +02:00
# the lover variant
$ unzip; strip; touch; finger; grep; mount; fsck; more; yes; fsck; fsck; umount; sleep
2023-04-15 13:53:05 +02:00
</code>
2023-04-15 13:23:49 +02:00
2023-04-15 13:53:05 +02:00
<code>
2023-04-15 13:23:49 +02:00
# it's not directly funny, only because it's not obvious that this is an sed command
2023-04-15 13:53:05 +02:00
# for the <<<, it works only in Bash
$ sed streetlight <<< reeter
2023-04-15 13:23:49 +02:00
lighter
2023-04-15 13:53:05 +02:00
</code>
2023-04-15 13:23:49 +02:00
2023-04-15 13:53:05 +02:00
<code>
2023-04-15 13:23:49 +02:00
# see above for comments
2023-04-15 13:53:05 +02:00
$ sed statement <<< cat
2023-04-15 13:23:49 +02:00
cement
2023-04-15 13:53:05 +02:00
</code>
2023-04-15 13:23:49 +02:00
2023-04-15 13:53:05 +02:00
<code>
2023-04-15 13:23:49 +02:00
$ \(-
bash: (-: command not found
2023-04-15 13:53:05 +02:00
</code>
2023-04-15 13:23:49 +02:00
2023-04-15 13:53:05 +02:00
<code>
2023-04-15 13:23:49 +02:00
$ echo '[q]sa[ln0=aln256%Pln256/snlbx]sb3135071790101768542287578439snlbxq'|dc
GET A LIFE!
2023-04-15 13:53:05 +02:00
</code>