使用换行符将 bash 数组写入文件
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/20243467/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-10 00:28:02 来源:igfitidea点击:
Write bash array to file with newlines
提问by H?kon H?gland
How do I write an array to a file such that each element is separated by a newline?
如何将数组写入文件,以便每个元素由换行符分隔?
The following does not work:
以下不起作用:
testa=( 1 2 3 )
echo "${testa[@]}" > file.txt
(now the elements are separated by spaces on a single line)
I would like avoid writing a for
loop for this...
(现在元素在一行上用空格分隔)我想避免for
为此编写循环......
回答by anubhava
Use printf
instead:
使用printf
来代替:
printf "%s\n" "${testa[@]}" > file.txt
cat file.txt
1
2
3