help-bash
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Help-bash] Bash syntax for using here-doc's or variables as files in pr


From: Jesse Hathaway
Subject: [Help-bash] Bash syntax for using here-doc's or variables as files in process substitution
Date: Tue, 26 Jun 2018 13:42:24 -0500

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}")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]