grimoire/bash/quine.sh

10 lines
135 B
Bash
Raw Normal View History

2022-07-07 07:09:42 +00:00
quine ()
2022-07-07 03:00:23 +00:00
{
2022-07-07 07:09:42 +00:00
type quine | {
2022-07-07 03:00:23 +00:00
read;
IFS= read -rd '' func;
printf %s "$func"
};
2022-07-07 07:09:42 +00:00
printf quine
2022-07-07 03:00:23 +00:00
}
2022-07-07 07:09:42 +00:00
quine