For example, I have a code can find me the directory name in the current folder without . in the front:
find . -maxdepth 1 -type d -regex '\./[^.]*$'
However, it gives me
./Templates
./eclipse-workspace
./Public
./Documents
./VirtualBox VMs
./Videos
./CLionProjects
./jd2
I need to do
du -sh
for each line of them sequentially, how can I do?