dotfiles/.local/scripts/9997_disk
Linux User 2db42127d0 update
2022-08-13 18:10:53 +00:00

7 lines
135 B
Bash

#!/bin/bash
used=$(df -h / | sed -n '1!p' | cut -d' ' -f22)
total=$(df -h / | sed -n '1!p' | cut -d' ' -f16)
echo "$used/$total"