Update name to make more sense

This commit is contained in:
Nick Chambers 2022-07-07 02:09:42 -05:00
parent d55b01983f
commit 6d5959587a
1 changed files with 4 additions and 4 deletions

View File

@ -1,10 +1,10 @@
u () quine ()
{ {
type u | { type quine | {
read; read;
IFS= read -rd '' func; IFS= read -rd '' func;
printf %s "$func" printf %s "$func"
}; };
printf u printf quine
} }
u quine