标签: bash unix cat
$ cat > out.txt <<EOF > Hello world > EOF $
我如何在单一陈述中这样做? Somethig喜欢以下陈述中的'echo'
$ for i in {1..5}; do echo "Hello world" > out_$i.txt; done
答案 0 :(得分:2)
您可以使用here-string,这是bash中此处短文档的快捷方式。
bash
cat <<< "Hello world" > out.txt