English 中文(简体)
我怎样才能修好这批货的脚本?
原标题:how can I fix this batch script?

我试图写一个批量脚本, 将多个 css 文件合并成一个文件。 目前我已想出这个...

# Set start folders & files
set fn1=filename.css
set fn2=another-filename.css
set fn3=yet-another-filename.css

# get filename add to temp file inside comment syntax
echo /* %fn1% >>  tmp.css
echo. --------------------------------------------------------------- */ >>  tmp.css
echo. >>  tmp.css

# copy file contents
copy/b %fn1% + tmp.css

# repeat with other files...

echo /* %fn2% >>  tmp.css
echo. --------------------------------------------------------------- */ >>  tmp.css
echo. >>  tmp.css
copy/b %fn2% + tmp.css

...

rename tmp.css  combined-files.css
move combined-files.css 
ew-foldercombined-files.css

问题是它产生了以下结果

/* filename.css
--------------------------------- */
/* another-filename.css
--------------------------------- */
/* ... */

[styles from filename.css]
[styles from another-filename.css]
....

我这是哪里搞错了?

谢谢 谢谢

我试图使用 ms-dos 来简化上述命令,

set commentpt1=*
set commentpt2=----------------------------------------- *

FOR /F %%I IN ( DIR /s C:[folder location] ) DO echo %commentpt1% %%~nI 0x0A %commentpt2% 0x0A 0x0A >> temp.css copy/b %%I + tmp.css >> temp.css
最佳回答

您的首要问题是您已经颠倒了 COPY / B 命令中的文件名顺序。 这个问题的一个副作用是您正在修改您的原始文件!

您可能不想看到 COPY / B 命令的输出, 这样您就可以重新定向到 nul 。

移动文件前无需重命名临时文件 。

事实上,为什么使用临时文件? 为什么不直接写到您想要的目的地文件?

I would put the blank line after the file contents, not before. I think it looks better.
It is safer to use echo( instead of echo..

但是... 有一种更简单更干净的方法 来做你想做的事

@echo off
(
  for %%F in (
    "filename.css"
    "another-filename.css"
    "yet-another-filename.css"
  ) do (
    echo /* %%~F
    echo --------------------------------------------------------------- */
    type %%F
    echo(
  )
)>"
ew-foldercombined-files.css"

如果您想要将文件夹中的所有. css 文件合并, 那么它就更简单了 :

@echo off
(
  for %%F in ( *.css ) do (
    echo /* %%~fF
    echo --------------------------------------------------------------- */
    type "%%~fF"
    echo(
  )
)>"
ew-foldercombined-files.css"

上述进程处理当前目录,但您可以在IN()条款中包括路径信息。

问题回答

例如,您可以将文件1.txt和文件2.txt加入名为文件3.txt的新文件:

copy/b file1.css+file2.css file3.css

或:

copy/b *.css newfilename.css

对于文件夹中的所有文件 OR :

copy/b * "newfilename_with_path"




相关问题
complex batch replacement linux

I m trying to do some batch replacement for/with a fairly complex pattern So far I find the pattern as: find ( -name *.php -o -name *.html ) -exec grep -i -n hello {} + The string I want ...

How to split a string by spaces in a Windows batch file?

Suppose I have a string "AAA BBB CCC DDD EEE FFF". How can I split the string and retrieve the nth substring, in a batch file? The equivalent in C# would be "AAA BBB CCC DDD EEE FFF".Split()[n]

How to check which Operating System?

How can I check OS version in a batch file or through a vbs in an Windows 2k/2k3 environment ? You know ... Something like ... : "If winver Win2k then ... or if winver Win2k3 then ....

热门标签