list files in directory and subdirectory linux code example
Example 1: linux find size of directory and subdirectories
du -s /home/george
Example 2: list all files in a directory and subdirectory linux
find . -type f -follow -print
du -s /home/george
find . -type f -follow -print