我有以下针对Linux的Shell命令,我需要为Window重写它以在提示命令提示符中使用。
find . -name \*.uncompressed.js -type f -delete and find . -name \*.js.map -type f -delete
目前我正在使用
del /s *.uncompressed.js and del /s *.js.map
但不起作用。
知道可能出现什么问题吗?
答案 0 :(得分:1)
Windows命令行需要两个单独的语句。
del /s *.uncompressed.js
del /s *.js.map