简体   繁体   中英

Creating files using Linux

I am trying to create multiple files using Linux command on my terminal, but it keeps saying -bash: marcel: No such file or directory. Is there a problem with the formatting of my code?

Here is my code:

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

< and > are special characters used to redirect streams: you must quote that filename:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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