Jesse Hathaway
2018-06-26 18:42:24 UTC
I would love to have native bash support for using a variable or a here doc as
file in process substituion, rather than doing something like this:
cat <(cat <<-'EOF'
butter
EOF
)
printf -v bubbles 'bubbles'
cat <(cat <<<"${bubbles}")
file in process substituion, rather than doing something like this:
cat <(cat <<-'EOF'
butter
EOF
)
printf -v bubbles 'bubbles'
cat <(cat <<<"${bubbles}")