I am a beginner programming shell scripts, right now I am doing a shell script to create zip files according to last modification of directory inside a path. Where date is:
today=date +%Y-%m-%d
customers=find /DOMINOAPP/Delta_Transfer/*/* -type d -name "*" -newermt $today | cut -d "/" -f4
I got this error:
./zips.sh: line 8: /bin/find: Argument list too long
Please anyone could you help me to fix this issue?