#!/bin/sh
#df $1 | tail -1 | awk '{print $2" "$4}'
set -f # kein globbing
set -- `/bin/df $1 | sed -n '$p'`
echo "$2 $4"
