#!/bin/bash
# Returns used and free disk space of all machines in the cluster
# Example output: steffe8 9.2G 47G
parallel --nonall --slf /home/rock/macchine.txt 'echo $HOSTNAME $(df -Ph | grep mmcblk0p5 | awk '\''{print $3" "$4}'\'')'