what does test -x
from
/etc/cron.daily/logrotate do?
test -x /usr/sbin/logrotate || exit 0
/usr/sbin/logrotate /etc/logrotate.conf
Does it test if already executing file /usr/sbin/logrotate?
what does test -x
from
/etc/cron.daily/logrotate do?
test -x /usr/sbin/logrotate || exit 0
/usr/sbin/logrotate /etc/logrotate.conf
Does it test if already executing file /usr/sbin/logrotate?
Type
man test
in Google and it will find you a manual page that says this:It checks if
file
exists and is executable by current user