Added an if statement and logging

This commit is contained in:
Daniel Sosnowski
2026-01-14 16:00:55 +01:00
parent 7d03ff9e58
commit f62a0c4951

9
pdt.sh
View File

@@ -4,5 +4,12 @@ readarray -t files < /var/www/html/storage/focode/file_list_temp.txt
for file in "${files[@]}"
do
ls -l "$file"
output=$(php compress.php process "$file")
if [[ $output -gt 0 ]]
then
echo "ERROR! Exiting the program"
exit 1
fi
echo "Processed file: $file: $output" | tee -a "/var/log/pdt$(date +%d%m%Y).log"
done