RosettaCodeData/Task/Quine/UNIX-Shell/quine-4.sh

10 lines
116 B
Bash
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
_ ()
{
function __ ()
{
true
};
${1} &> /dev/null;
echo "$(declare -f _);_ ${@}"
};_ __