如何将字符串添加到“类型<文件名>”合并到文件之前的DOS命令?文件名>
问题:我有几个包含 sql create table/column/view/storedProcedure 文本文件的文本文件。现在我想将文本文件合并为一个文本文件。
我进入目录,然后输入:
type *.sql >> allcommands.sql
现在的问题是我应该在每个文件的内容后面添加文本“GO”。
我可以通过执行以下操作来附加 Go
type *.sql >> allcommands.sql & echo GO >> allcommands.sql
但这只会插入 go 一次。 如何使用 DOS 命令完成此操作?
Question: I've several text files containing sql create table/column/view/storedProcedure textfiles. Now I want to merge the textfiles into one textfile.
I go into the directory, and type:
type *.sql >> allcommands.sql
Now to problem is I should add the text ' GO ' after every file's content.
I can append Go by doing
type *.sql >> allcommands.sql & echo GO >> allcommands.sql
But this only inserts go once.
How can I accomplish this with DOS commands ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您想要这样的东西:
%%
用于批处理文件。如果您不是从批处理文件运行它,则只需要单个 % 符号。You want something like this:
The
%%
is for use in a batch file. If you're not running it from a batch file you only need single % signs.试试这个,
它会添加换行符,然后转到每个 SQL 文件。它对我有用,试试吧。
Try this one
it adds newline then go for each SQL file. it works for me try it.
使用 copy 将第一个文件与带有“GO”文本的文件连接起来,然后再次与第二个文件连接。
Use copy to concatenate the first file with a file with "GO" text, then concatenate again with the second file.