On 16Mar2014 15:56, CS DBA <cs_dba@xxxxxxxxxxxxxxxxxxx> wrote: > where would I find a complete list of the completely dynamic top > level directories? You shouldn't care that they're top level, only which ones are the right type. Like this: mount | awk '$5 ~ /^(xfs|ext2|ext3)$/ { print $1 }' So in a script: mountpoints=$( mount | awk '$5 ~ /^(xfs|ext2|ext3)$/ { print $1 }' ) for fs in $mount_points do ... backup "$fs", eg "rsync -x "$fs" ... done Expand the list of filesystem types with the ones you actually use; I tend to use xfs myself. You may want to explicitly avoid removable drives if they mount in a recognisably place. For example, I hand mount removable drives as /mnt/whatever, so I would avoid mount points starting with /mnt/ to keep them from polluting my backup system. Cheers, -- Cameron Simpson <cs@xxxxxxxxxx> C'est un Nagra. C'est suisse, et tres, tres precis. - _Diva_ -- users mailing list users@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org