列出某個目錄及其所有子目錄包含的檔案數的方法: find Documents/Picture -type f | wc -l 列出某個目錄及其所有子目錄總案大小的方法: du -shc Documents/Picture 列出某個目錄下第一層的每個子目錄大小的方法: du -sh Documents/Picture/*
列出某個目錄及其所有子目錄包含的檔案數的方法: find Documents/Picture -type f | wc -l 列出某個目錄及其所有子目錄總案大小的方法: du -shc Documents/Picture 列出某個目錄下第一層的每個子目錄大小的方法: du -sh Documents/Picture/*