如何将字符串添加到“类型<文件名>”合并到文件之前的DOS命令?

发布于 2024-09-13 21:36:14 字数 379 浏览 5 评论 0原文

问题:我有几个包含 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

狼亦尘 2024-09-20 21:36:14

您想要这样的东西:

for %%f in (*.sql) do type %%f >>allcommands.sql & echo GO >> allcommands.sql

%% 用于批处理文件。如果您不是从批处理文件运行它,则只需要单个 % 符号。

You want something like this:

for %%f in (*.sql) do type %%f >>allcommands.sql & echo GO >> allcommands.sql

The %% is for use in a batch file. If you're not running it from a batch file you only need single % signs.

鱼忆七猫命九 2024-09-20 21:36:14

试试这个,

for %%f in (*.sql) do (
type %%f >>allcommands.sql
echo. >> allcommands.sql
echo GO >> allcommands.sql
echo. >> allcommands.sql )

它会添加换行符,然后转到每个 SQL 文件。它对我有用,试试吧。

Try this one

for %%f in (*.sql) do (
type %%f >>allcommands.sql
echo. >> allcommands.sql
echo GO >> allcommands.sql
echo. >> allcommands.sql )

it adds newline then go for each SQL file. it works for me try it.

信仰 2024-09-20 21:36:14

使用 copy 将第一个文件与带有“GO”文本的文件连接起来,然后再次与第二个文件连接。

Use copy to concatenate the first file with a file with "GO" text, then concatenate again with the second file.

望喜 2024-09-20 21:36:14
@echo off
CLS
::concat.bat outfile.sql
setlocal EnableDelayedExpansion

If EXIST GOTMP.TMP DEL /Q GOTMP.TMP
Echo GO>GOTMP.TMP
ECHO.>>GOTMP.TMP

If EXIST "%~1" DEL /Q "%~1"
Echo.>"%~1"

for /f "tokens=*" %%A in ('dir  /a-d /on /b "*.sql"') do call :perfaction "%%A%" "%~1"
ECHO Done Generating Output "%~1"
ECHO.
pause
Goto :EOF

:perfaction
ECHO "%~1"
copy "%~2"+"%~1"+GOTMP.TMP "%~2"
GOTO :EOF
@echo off
CLS
::concat.bat outfile.sql
setlocal EnableDelayedExpansion

If EXIST GOTMP.TMP DEL /Q GOTMP.TMP
Echo GO>GOTMP.TMP
ECHO.>>GOTMP.TMP

If EXIST "%~1" DEL /Q "%~1"
Echo.>"%~1"

for /f "tokens=*" %%A in ('dir  /a-d /on /b "*.sql"') do call :perfaction "%%A%" "%~1"
ECHO Done Generating Output "%~1"
ECHO.
pause
Goto :EOF

:perfaction
ECHO "%~1"
copy "%~2"+"%~1"+GOTMP.TMP "%~2"
GOTO :EOF
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文