使用 cat 和 here-document 写入文件
writing file using cat with here-document
$ cat > out.txt <<EOF
> Hello world
> EOF
$
如何在单个语句中执行此操作?
在下面的语句
中类似于 'echo'
$ for i in {1..5}; do echo "Hello world" > out_$i.txt; done
您可以使用 here-string,它是 bash
中简短 here 文档的快捷方式。
cat <<< "Hello world" > out.txt
$ cat > out.txt <<EOF
> Hello world
> EOF
$
如何在单个语句中执行此操作?
在下面的语句
$ for i in {1..5}; do echo "Hello world" > out_$i.txt; done
您可以使用 here-string,它是 bash
中简短 here 文档的快捷方式。
cat <<< "Hello world" > out.txt