simple loop:
for i in file*;do if if_no_file*;then echo "there are no files begin with file";else process file(*);done
how to check after "do" that $i is empty and then print echo "there are no files begin with file"?
[ $number_of_arguments_i -eq 0 ] && echo "there are no files begin with file" || process $i