17 lines
101 B
Text
17 lines
101 B
Text
|
|
foo()
|
||
|
|
{
|
||
|
|
echo
|
||
|
|
cat <<END
|
||
|
|
bar
|
||
|
|
END
|
||
|
|
cat <<EOF
|
||
|
|
qux
|
||
|
|
EOF
|
||
|
|
}
|
||
|
|
|
||
|
|
type foo
|
||
|
|
foo
|
||
|
|
|
||
|
|
eval "$(type foo | sed 1d)"
|
||
|
|
foo
|