10MB보다 큰 모든 파일을 다른 폴더로 어떻게 이동할 수 있나요?
-rw-r--r-- 1 nath nath 4,3M Apr 21 2018 "file1.mp3"
-rw-r--r-- 1 nath nath 1,7M Jun 10 2017 'file2.mp3'
-rw-r--r-- 1 nath nath 76M Okt 12 05:33 file3.mp3
-rw-r--r-- 1 nath nath 3,7M Mär 1 2016 'file4.mp3'
따라서 이 경우에는 그냥 움직일 것입니다.file3
답변1
좋습니다. 질문을 게시한 지 5분 만에 답변을 찾았습니다.
find . -type f -size +10M -exec mv "{}" new_folder/ \;