Changes
Page history
Update IBG 3: JSC Supercomputer HowTo
authored
Apr 26, 2024
by
Johannes Keller
Show whitespace changes
Inline
Side-by-side
IBG-3:-JSC-Supercomputer-HowTo.md
View page @
06ecf927
...
...
@@ -255,7 +255,7 @@ find . -name "*" -type f | wc -l
Check the number of files in all subdirectories of the current directory
```
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
...
...
...
...