mirror of
https://git.busybox.net/busybox
synced 2025-05-13 14:14:01 +02:00
7 lines
58 B
Text
Executable file
7 lines
58 B
Text
Executable file
foo () {
|
|
cat <<EOF && { echo "$1" ; }
|
|
$1
|
|
EOF
|
|
}
|
|
|
|
foo "bar"
|