From: Stefan Huber Date: Mon, 5 Nov 2012 08:13:14 +0000 (+0100) Subject: add conky/showmounts.sh X-Git-Url: https://git.sthu.org/?p=shutils.git;a=commitdiff_plain;h=90f5331dddae361cf2e66569bb06b3a216b9cfc1 add conky/showmounts.sh --- diff --git a/conky/showmounts.sh b/conky/showmounts.sh new file mode 100755 index 0000000..9365886 --- /dev/null +++ b/conky/showmounts.sh @@ -0,0 +1,3 @@ +#!/bin/sh +df -h | grep '/dev/s[rd][c-z0-9]' | awk '{ print $1 "\t" $5 " " $6}' | sed "s_/dev/__" | sort +df -h | grep '/dev/mmc*' | awk '{ print $1 "\t" $5 " " $6}' | sed "s_/dev/__" | sort