假設我有一個目錄,看起來像:如何刪除目錄中空的所有文件?
-rw-r--r-- 1 some-user wheel 0 file1
-rw-r--r-- 1 some-user wheel 257 file2
-rw-r--r-- 1 some-user wheel 0 file3
-rwxr-xr-x 1 some-user wheel 212 file4
-rw-r--r-- 1 some-user wheel 2012 file5
.... more files here.
如果是相關的,假設文件的名稱是更隨機不僅僅是文件#。
如何在某個目錄中僅使用rm和grep或sed以某種形式刪除空的文件(即文件中有0個字節)?
Stack Overflow是用於編程和發展問題的站點。這個問題似乎與題目無關,因爲它不涉及編程或開發。請參閱幫助中心的[我可以詢問哪些主題](http://stackoverflow.com/help/on-topic)。也許[超級用戶](http://superuser.com/)或[Unix&Linux堆棧交換](http://unix.stackexchange.com/)會是一個更好的地方。另請參閱[我在哪裏發佈有關Dev Ops的問題?](http://meta.stackexchange.com/q/134306) – jww
對不起。我需要知道我寫的一個清理腳本。謝謝! – MisterHuac