#!/bin/bash
#
# sys-snapshots-list
#
# List snapshots for all file systems
#
# (c)2018 Marek Uher <marek@uher.info>
#

for SNAP_DIR in `mount | grep "\.snapshots" | awk '{ print $3 }'`; do echo ${SNAP_DIR} ; ls -al ${SNAP_DIR} ; done

exit 0

# /* End of file: sys-snapshots-list */ 
