rm -f /obi/u01/informatica/v711/pmserver/SrcFiles/coe/aone/AccessOne_Daily_Input.xml
What is its use in unix and its possible implementation in dos?
What is its use in unix and its possible implementation in dos? | ||||
|
feedback
|
This question came from our site for professional and enthusiast programmers.
|
It just forces a file to be deleted, even if it's read-only.
is the rough equivalent in Windows command shells. | |||||||||||||
feedback
|
|
If you feel comfortable with UNIX commands, you can use a UNIX command shell simulator in windows, the one that I use is called CYGWIN: | |||
|
feedback
|
|
rm -f forces the delete of a file. IF you need to delete everything in a specific folder, including folders withing folders, you would need to do rm -rf in unix. | |||
|
feedback
|
cmd.exeis a native Windows application. – grawity Aug 12 '09 at 9:13