1
0
Fork 0
mirror of https://github.com/YunoHost/doc.git synced 2024-09-03 20:06:26 +02:00
doc/images/images_check.sh

9 lines
No EOL
212 B
Bash
Executable file

#!/bin/bash
while IFS= read -r file
do
# echo $file
# [ -f "$file" ] && echo "$file does not exist"
if [ ! -f $file ]; then
echo "https://yunohost.org/images/"$file
fi
done < "images.list"