May 22, 2002 #1 Kwasi IS-IT--Management Joined Nov 4, 2002 Messages 2 Location US How do I delete a file if I name is -i?
May 22, 2002 #2 rbobbitt Programmer Joined Aug 17, 2000 Messages 566 Location US #include <stdio.h> int main(void) { remove("-i" return 0; } Russ bobbitts@hotmail.com http://home.earthlink.net/~bobbitts Upvote 0 Downvote
#include <stdio.h> int main(void) { remove("-i" return 0; } Russ bobbitts@hotmail.com http://home.earthlink.net/~bobbitts
Jun 10, 2002 #3 Guest_imported New member Joined Jan 1, 1970 Messages 0 Try rm -- -i for details, see man rm Upvote 0 Downvote