#13 쓰잘데없는 파일 지우기 ㅋㅋ (find and rm) : 맥 사용자가 윈도우 사용자에게 디렉토리 zip해서 주기전
star
Tasks
find . -name "._*"
find . -name ".DS_Store"
find . -name "._*" -print0 | xargs -0 rm
find . -name ".DS_Store" -print0 | xargs -0 rm
Comment 0
-
Added
KKoZZi added
macoslabel 2022-12-17 -
KKoZZi added
ubuntulabel 2022-12-17
Add a comment
Comment 0