Skip to content

Commit e1429dd

Browse files
committed
added one-liner that shows largest folders to myquota section
1 parent c78ea6e commit e1429dd

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

docs/hpc/06_tools_and_software/08_utils.mdx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,13 @@ Space Variable /Flushed? Space / Files Space(%) / File
2020
/archive $ARCHIVE YES/NO 2.0TB/0.02M 0.0TB(0.0%)/1(0%)
2121
```
2222

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
28+
```
29+
:::
2330
## my_slurm_accounts
2431

2532
my_slurm_accounts returns a list of slurm accounts associated with your HPC account. For more information about slurm accounts please see [Slurm Accounts](../01_getting_started/03_Slurm_Accounts/01_intro_slurm_accounts.mdx)

0 commit comments

Comments
 (0)