Bash

Bash - 查找 - 移動大於特定大小的文件

  • August 9, 2019

如何將所有大於 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

好的,在發布問題 5 分鐘後,我找到了答案:

find . -type f -size +10M -exec mv "{}" new_folder/ \;

引用自:https://unix.stackexchange.com/questions/484791