From 0df48fc2db083eab97eda3d9ee27308c11499ca3 Mon Sep 17 00:00:00 2001 From: "committer@tuxwarrior" Date: Mon, 9 Mar 2026 08:41:39 -0500 Subject: [PATCH] + biggestfiles list top biggest files --- dots/bash/.bashrc | 1 + 1 file changed, 1 insertion(+) diff --git a/dots/bash/.bashrc b/dots/bash/.bashrc index 2c4ff57..484f479 100644 --- a/dots/bash/.bashrc +++ b/dots/bash/.bashrc @@ -27,6 +27,7 @@ eval "$(zoxide init bash)" # --- alias azurevpnclient="/opt/microsoft/microsoft-azurevpnclient/microsoft-azurevpnclient" +alias biggestfiles="find ~ -type f -exec du -h {} + 2>/dev/null | sort -hr | head -n 20" alias cp="cp -i" # confirm before overwriting something alias ct="sudo ct" alias decrypt="gpg --decrypt"