I'm trying to recursive erase all files that begin with "._" (aka mac dot files) on my server using SSH. The files are listed with a ls -a but this won't work:
rm -rf ._*
I know there's a way. Mind to share? Cheers!
|
|
|
I don't see what this has to do with "ssh", other than the fact that it means you probably don't have a graphic shell. |
|||
|
by the way rm -rf is for removing directories recursively |
||||
|
|
Specify that it's files and just call the find-delete on item directly. |
|||
|
|