August 19, 201015 yr I am trying to delete a file through my Mac but it keeps saying its in use. How can I do this though telnet or another way. No idea why it won't let me delete it.
August 19, 201015 yr rm would remove a file. rm nameoffile.avi Of course you could use wildcards like rm nameof* to keep it short, but becareful using * because you could delete to much messing around with it. rm --help would give you a huge line of options if you choose. rm -fr nameoffolder would delete an entire folder and all of its contents. -f meaning , don't prompt me -r meaning recursive
August 19, 201015 yr Author Thanks Kizer, I deleted one file but I can't get the the directory to delete the other one. Is there something special I need to do for a space? Trying to connect to TV Shows and delete a file in there
August 19, 201015 yr Thanks, I deleted one file but I can't get the the directory to delete the other one. Is there something special I need to do for a space? Trying to connect to TV Shows and delete a file in there either precede the space with a backslash, or quote the entire name cd /mnt/user/TV\ Shows or cd "/mnt/user/TV Shows"
August 19, 201015 yr I just lazy it up. I just type in part of the word and hit the "TAB" key which most of the time auto completes
October 20, 201015 yr Author what do I have to type in to delete this file. rm 1-09 Fleet Of Hope.mp3 isn't working?
October 20, 201015 yr what do I have to type in to delete this file. rm 1-09 Fleet Of Hope.mp3 isn't working? Surround the name with quotes. rm "1-09 Fleet Of Hope.mp3"
Archived
This topic is now archived and is closed to further replies.