Update IBG 3: JSC Supercomputer HowTo authored by Johannes Keller's avatar Johannes Keller
...@@ -255,7 +255,7 @@ find . -name "*" -type f | wc -l ...@@ -255,7 +255,7 @@ find . -name "*" -type f | wc -l
Check the number of files in all subdirectories of the current directory Check the number of files in all subdirectories of the current directory
```shell ```shell
for d in ./*/ ; do (find $d -type f | wc -l); done for d in ./*/ ; do echo $d; (find $d -type f | wc -l); done
``` ```
#### du: Check memory #### du: Check memory
... ...
......