grimoire/bash/quine.sh

10 lines
119 B
Bash

u ()
{
type u | {
read;
IFS= read -rd '' func;
printf %s "$func"
};
printf u
}
u