Post #2721302
2026-05-20 08:26 UTC
:() { # define a function named ":".
: # run the function named ":"
| : # pass the output to the function named ":"
& # run this line in the background.
}; # end of definition
: # call the function ":".
in case anyone was curious.
Replies (1)
-
@rbos@lemmy.ca 2026-05-20 09:04
If you replace : with “loop” it becomes pretty clear. The only ‘weird’ thing is using punctuation as a function name.