equivalent of rm and mv in windows .cmd

user2341103 picture user2341103 · Jul 12, 2013 · Viewed 184.6k times · Source

I have the following in a shell script,I want to convert the following lines into a windows cmd file..can anyone provide inputs on what is the equivalent for "rm" and "mv" in windows cmd file.

rm -f ${BUILD_ID}/${BUILD_ASIC}*rampatch*
mv ${BUILD_ID}/${BUILD_ASIC}*rampatch* ${BUILD_ID}/emul/

Answer

Jainendra picture Jainendra · Jul 12, 2013

move in windows is equivalent of mv command in Linux

del in windows is equivalent of rm command in Linux