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/
move
in windows is equivalent of mv
command in Linux
del
in windows is equivalent of rm
command in Linux