+find_flist() {
+ # Desc: print file list to stdout via `find` using script parameters
+ # Input: arg1: path to dir
+ # var: fdepth find depth
+ # var: firegex pattern find iregex
+ # var: fsize find size
+ if [[ ! -d "$1" ]]; then return 1; fi;
+ must find "$1" -maxdepth "$fdepth" -type f -iregex "$firegex" -size +"$fsize";
+}; # print file list to stdout from dir with script parameters