在命令提示符下使用 echo 创建文本文件
Create text file using echo in command prompt
我正在桌面上使用命令提示符中的 echo 创建一个 hello_world.txt,这是我的输入。
echo hello world > C:\Users\user\Desktop\hello_world.txt
第一个代码有效,然后我尝试 %userprofile% if example,我想把它给另一个用户。
echo hello world > C:\Users\%userprofile%\Desktop\hello_world.txt
无效。任何简单的回显命令行来创建文本文件?
你的命令应该是:
echo hello world > %userprofile%\Desktop\hello_world.txt
如果您在 %userprofile%
之前放置任何内容,它将不起作用,因为它是完整路径,因此 C:\Users\%userprofile%\Desktop\hello_world.txt
被替换为 C:\Users\C:\Users\cromix\Desktop\hello_world.txt
。
您可以输入:
touch <file name>
非常重要注意:您只能在cmder或Mac OS.
这在 Windows 中有效,只需下载 cmder 。
This is an example
我正在桌面上使用命令提示符中的 echo 创建一个 hello_world.txt,这是我的输入。
echo hello world > C:\Users\user\Desktop\hello_world.txt
第一个代码有效,然后我尝试 %userprofile% if example,我想把它给另一个用户。
echo hello world > C:\Users\%userprofile%\Desktop\hello_world.txt
无效。任何简单的回显命令行来创建文本文件?
你的命令应该是:
echo hello world > %userprofile%\Desktop\hello_world.txt
如果您在 %userprofile%
之前放置任何内容,它将不起作用,因为它是完整路径,因此 C:\Users\%userprofile%\Desktop\hello_world.txt
被替换为 C:\Users\C:\Users\cromix\Desktop\hello_world.txt
。
您可以输入:
touch <file name>
非常重要注意:您只能在cmder或Mac OS.
这在 Windows 中有效,只需下载 cmder 。
This is an example