如何将删除和查找命令从 Linux Shell 重写为 Window 命令提示符?

How to rewrite delete and find command from Linux Shell to Window Command Prompt?

我有以下 Shell 命令用于 Linux,我需要重写它以便 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

但不起作用。

知道哪里出了问题吗?

Windows 命令行需要两个单独的语句。

del /s *.uncompressed.js
del /s *.js.map