Difference between revisions of "Command:rm"
Jump to navigation
Jump to search
Bootyjuice (talk | contribs) |
|||
Line 8: | Line 8: | ||
*rm myoldfile.txt | *rm myoldfile.txt | ||
:deletes the file "myoldfile.txt" | :deletes the file "myoldfile.txt" | ||
+ | |||
+ | *rm "c:\\program files\\world of warcraft\\cache\\wdb\\enus\\creaturecache.wdb" | ||
+ | :Deletes the c:\program files\world of warcraft\cache\wdb\enus\creaturecache.wdb. Please note that double-quotes ("") are needed around the full path name since it contains spaces. Also, please note that any backslash (\) characters must be escaped out by putting another backslash in front of them. | ||
== See Also == | == See Also == |
Latest revision as of 20:00, 11 November 2009
Contents
Syntax
rm <filename>
Description
Removes (deletes) a file.
Examples
- rm myoldfile.txt
- deletes the file "myoldfile.txt"
- rm "c:\\program files\\world of warcraft\\cache\\wdb\\enus\\creaturecache.wdb"
- Deletes the c:\program files\world of warcraft\cache\wdb\enus\creaturecache.wdb. Please note that double-quotes ("") are needed around the full path name since it contains spaces. Also, please note that any backslash (\) characters must be escaped out by putting another backslash in front of them.