jdf (Source)

#!/bin/bash
##---------------------------------------------------------------------------##
#
#   Program:  jdf
#   Author:   Brian <genius@groupbcl.ca> :)
#   Date;     July 2014
#
#   Presents nicely formatted output from 'df'. Also aims to set a record of
#   some sort for the greatest ratio of comments to lines of code :)
#
##---------------------------------------------------------------------------##
# BUUS: This script is part of Brian's Useful Utilities Set
##---------------------------------------------------------------------------##

df -hP | grep '^/dev' | sed 's/Mounted on/Mounted_on/' | column -t

# vim: tabstop=4