Created
June 12, 2026 17:31
-
-
Save uplime/9692dceea722d0558da801a74eaafc65 to your computer and use it in GitHub Desktop.
Display a program's source as its output.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| quine () | |
| { | |
| type quine | { | |
| read; | |
| IFS= read -rd '' func; | |
| printf %s "$func" | |
| }; | |
| printf quine | |
| } | |
| quine |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment