From f125825b30533fdd96b46806b09ca762e2580d3f Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 25 Dec 2020 02:11:45 -0500 Subject: [PATCH] Added dfh to terminalTweaks.txt. --- bash/terminalTweaks.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bash/terminalTweaks.txt b/bash/terminalTweaks.txt index acb6990..078bc7e 100644 --- a/bash/terminalTweaks.txt +++ b/bash/terminalTweaks.txt @@ -20,3 +20,6 @@ fi # Ever wanted to open Windows explorer in whatever directory you're in to work on the files # in Windows? Well this allows you to do exactly that, just like in the Command Prompt. alias explorer=explorer.exe + +# Tired of seeing all the tmpfs partitions in df? This alias has you covered! +alias dfh="df -h | grep -v tmpfs"