繁体   English   中英

使用 Linux 创建文件

[英]Creating files using Linux

我试图在我的终端上使用 Linux 命令创建多个文件,但它一直说 -bash: marcel: No such file or directory。 我的代码格式有问题吗?

这是我的代码:

$ touch hello.txt index.html question1.txt question2.txt question3.md <marcel>.info remove-me-1.txt remove-me-2.txt

<>是用于重定向流的特殊字符:您必须引用该文件名:

touch hello.txt index.html question1.txt question2.txt question3.md "<marcel>.info" remove-me-1.txt remove-me-2.txt

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM