如何将所有输入(包括空格)连接到一个字符串?

时间:2014-06-02 15:12:41

标签: bash posix

用于脚本

script.sh < a b                              c a

我想将输入放在一个字符串中,就像那个

string=" a b                              c a"

即保留空格

我该怎么做?

感谢

1 个答案:

答案 0 :(得分:1)

考虑使用here documentshere strings

script.sh:

#!/bin/bash
readarray -t INPUT
printf "input: %s\n" "${INPUT[@]}"

示例:

bash script.sh <<< "a b c"