我试图写一个批量脚本, 将多个 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