3
如何将heredoc定义的变量传递给命令
如何将此heredoc定义的变量传递给命令? read -r -d '' tables <<'EOF' table1 table2 table3 EOF tables=$(tr '\n' ' ' < "$tables"); 我希望将table变量定义为: table1 table2 table3
2
shell