![]() |
Re: ._filenames ? Useless? Can they be removed?
Hi, I downloaded emelfm2 from here: http://www.internettablettalk.com/fo...ad.php?t=18462 it is a nice .deb, so just click and install. Good luck.
|
Re: ._filenames ? Useless? Can they be removed?
Just for future note to people.. to delete a file with a space in command line you need to use an escape character (\).. so
Code:
rm -f my\ file.mp3 |
Re: ._filenames ? Useless? Can they be removed?
My way of deleting files like these from a file system is:
rm -i `find ._*` remove the -i if you don't want to confirm the deletion of each file, just remember there is no 'un'rm |
Re: ._filenames ? Useless? Can they be removed?
Quote:
|
Re: ._filenames ? Useless? Can they be removed?
Try this
Code:
~/trial $ ls -a Code:
~/trial $ for f in ._* Code:
~/trial $ ls -a |
Re: ._filenames ? Useless? Can they be removed?
or on one line
Code:
for file in ._*; do rm "$file";done |
Re: ._filenames ? Useless? Can they be removed?
or
ls ._* | while read file;do rm "$file";done |
Re: ._filenames ? Useless? Can they be removed?
Quote:
|
Re: ._filenames ? Useless? Can they be removed?
Quote:
Not only for find, for a lot of other things probably.. |
All times are GMT. The time now is 20:22. |
vBulletin® Version 3.8.8