Run multi scripts in a folder with cron
Solution 1:
Alternatively you may use run-parts
:
* * * * * /usr/bin/run-parts --regex='.+' /home/user/scripts/enabled
Parameter --regex='.+'
allows any filenames.
Details: man run-parts
.
Solution 2:
Try
for script in /home/user/scripts/enabled/*; do $script &>/dev/null; done