You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
342 B
9 lines
342 B
#!/bin/bash
|
|
function hddUsage {
|
|
df --output=pcent $hdd | tail -1 | grep -Po "(\\d+)" --color=never
|
|
}
|
|
|
|
function hddTop {
|
|
du -hd 3 / --exclude="/proc" --exclude="/media" --exclude="/mnt" --exclude="/usr/local/bin/dchub/share" | sort -hr | grep -E "/.*/.*/" | head -n 3 | sed -e 's/\t/%20/g; s:/:%2F:g; a%0A' | sed -e '1i \%0A' | tr -d '\n'
|
|
}
|