find | xargs
Today cron doesn’t want to regexp my “cp [a-Z]* …”. Even if i set SHELL=/bin/bash in the crontab it got the error “cp: cannont stat [a-Z]*: No such file or directory”. Manually on the shell there is no problem with regexp (it’s locales fault; cron uses the POSIX locale and here I should use [a-zA-Z] […]