#!/bin/sh

DEVICE="$1"

df "$DEVICE" | tail -n 1 | tr -s ' ' | cut -d' ' -f 2-3 | tr ' ' '\n'
