We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd704fa commit d1cb000Copy full SHA for d1cb000
1 file changed
docs/hpc/06_tools_and_software/08_utils.mdx
@@ -23,10 +23,14 @@ Space Variable /Flushed? Space / Files Space(%) / File
23
:::tip
24
Here's how you can see which folders contain the most files:
25
```bash
26
-echo -e "${RED}The following 5 folders are impacting this quota the most.${NC}"
27
-find $HOME -xdev | cut -d "/" -f 1-4 | sort | uniq -c | sort -nr | head -n 5
+du --inodes -h -s -- * .[!.]* ..?* 2>/dev/null | sort -hr | head -n 5
+```
28
+and here's how you can see which ones most contribute to your disk usage:
29
+```bash
30
+du -h -s -- * .[!.]* ..?* 2>/dev/null | sort -hr | head -n 5
31
```
32
:::
33
+
34
## `my_slurm_accounts`
35
36
`my_slurm_accounts` returns a list of `SLURM` accounts associated with your HPC account:
0 commit comments