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
move and del ARE certainly the equivalents, but from a functionality standpoint they are woefully NOT equivalent. For example, you can't move both files AND folders (in a wildcard scenario) with the move command. And the same thing applies with del.
The preferred solution in my view is to use Win32 ports of the Linux tools, the best collection of which I have found being here.
mv and rm are in the CoreUtils package and they work wonderfully!