将内容输入到文本文件中的脚本
如何将一些“文本”包含到 .txt 格式文件中,而不通过 Windows 上的脚本打开该文件?
How do I include some "text" into a .txt format file without opening the same via a script on Windows?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
我会给你一个完全PowerShell的答案。您可以使用添加内容或Set-Content cmdlet。
Set-Content 覆盖目标文件,Add-Content 追加到该文件。
或者,您也可以使用 Out-File。
I will give you an all PowerShell answer. You can use Add-Content or Set-Content cmdlets.
Set-Content overwrites the target file and Add-Content appends to the file.
Or, you can also use Out-File.
您需要的命令是
echo
(写入输出 - 使用 Get-Alias 获取列表):此链接 应该会有所帮助学习 Windows 命令。
The command you need is
echo
(alias of Write-Output - use Get-Alias to get the list):This link should prove helpful in learning Windows commands.
以下是创建内容并将其添加到文本文件中的示例代码:
Here is the sample code to create and add content into a text file:
如果您想从标准 Windows 命令提示符(在键盘上输入内容)以交互方式执行此操作,您可以使用以下命令:
然后您就可以开始输入。要完成,只需按 Ctrl+Z 和 ENTER,如下所示:
要查看文件,请使用:
您应该看到以下输出:
If you want to do it interactively from a standard Windows command prompt (typing the content in at the keyboard), you can use the following:
Then you can just start typing. To finish, just hit Ctrl+Z and ENTER, like so:
To view the file, use:
You should see the following output:
Get-Content cmdlet 应为你工作得很好。
The Get-Content cmdlet should work fine for you.