Check Folder Size In Linux Terminal Code Example
Example 1: check folder sizes linux
du -h --max-depth=1 Example 2: how to check folder size in linux
# show all folder size in the current directory du -h --max-depth=1 Example 3: check folder size in linux terminal
du -sh /home/user/ Example 4: linux find size of directory and subdirectories
du -s /home/george Example 5: check directory size
du -sh /home/george
Comments
Post a Comment