#!/bin/sh for i in $(grep -v ^# /etc/fstab |awk '{ print $2 }');do printf Unmounting $i umount $i done