6 lines
126 B
Bash
6 lines
126 B
Bash
|
#/bin/sh
|
||
|
|
||
|
find "${NC_MAIL_QUEUE_FOLDER:-/nc-mail-queue}" -name '*.sh' -exec sh -c \
|
||
|
'cd /var/www/html && {} && rm {}' \
|
||
|
';'
|