cat > 命令也可以创建文档

时间:2023-03-08 17:16:38

今天看《Linux/Unix系统编程手册》,发现用cat > 命令也可以直接创建文本文档:

cat > testcatcreate.txt
test
test

[2]+ Stopped cat > testcatcreate.txt

[root@localhost others]# cat testcatcreate.txt
test
test
[root@localhost others]#

相关文章