#!/bin/sh
#] 
#] *********************
#] $ bash  "$d_bin""du disk utility notes & script.sh"  - example (for tracking clamscan coverage)
#www.BillHowell.ca  04Apr2016

#du [options] [file]
# -a, --all
#         write counts for all files, not just directories
#  -c, --total
#         produce a grand total
#  -d, --max-depth=N  
#         print the total for a directory or file only if it is N or fewer levels below
#         the command line argument 
#  -h, --human-readable
#         print sizes in human readable format (eg 1K 234M 2G)
#  -X, --exclude-from=FILE
#         exclude files that match any pattern in FILE
#  -exclude 
#         exclude files that match pattern FILE


#Howell example (for tracking clamscan coverage)
#	du >"/media/bill/HOWELL_BASE/NN_conf_DVDs/2020 WCCI papers & videos" -ch --max-depth=2 /home/bill


# old searches 
#	du >"/media/bill/HOWELL_BASE/NN_conf_DVDs/2020 WCCI papers & videos" -ch --max-depth=2 /home/bill
#	du -ch "/media/bill/HOWELL_BASE/NN_conf_DVDs/2020 WCCI papers & videos"
	du -ch --max-depth=2 "/media/bill/SWAPPER/Projects - mini/"







# enddoc 
