find "$path" -type f -mmin +9 -print0 | xargs -0 rm
find "$path" -type f -mmin +9 -delete
A=$(find "$path" -type f -mmin +9)
while read; do rm "$REPLY";done<<<"$A"
grep -rl "server_name " /etc/nginx/conf.d/ | sed '/default/d' | sed '/sclool.tools/d' | sed '/images.interatletika/d' | \ sed 's/.conf//g' | sed 's/\/etc\/nginx.d\//\/var\/www\//g | \
xargs find {} -regextype posix-extended -iregex ".*\.(png|jpg|gif|jpeg|ico|svg)" -not -path "${DIR}tmp/*" -print >> "$LIST" \;