How to delete hidden files in subdirectories

When developer uses a samba server on macOS, the cache files like .DS_Store or ._.DS_Store are created. At that time, if you want to delete this files, you can do it using following bash shell:

$ find . -name ".DS_Store" -exec rm -f {} \;
$ find . -name "._.DS_Store" -exec rm -f {} \;


댓글

이 블로그의 인기 게시물

macOS가 갑자기 부팅이 되지 않을 경우 데이터 복구 또는 백업 방법

C++로 프로그래밍할 때 인자 또는 리턴 값으로 std::vector 등 STL 데이터 타입 처리하는 좋은 방법

Git 저장소를 병합하는 방법(How to merge repositories in Git)