Equivalent of rm and mv in windows .cmd

bash, cmd, shell

Solution

`move` in Windows is equivalent to `mv` command in Linux

`del` in Windows is equivalent to `rm` command in Linux

UPDATE: This is a simplified answer but the behavior and capabilities are quite different as mentioned by @WestCoastProjects in the comment.

Problem

I have the following commands in a shell script. I want to convert these lines into a windows cmd file. Can anyone provide input on what is the equivalent for "rm" and "mv" in a windows cmd file? ``` rm -f ${BUILD_ID}/${BUILD_ASIC}*rampatch* mv ${BUILD_ID}/${BUILD_ASIC}*rampatch* ${BUILD_ID}/emul/ ```

Original source

Related problems