mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
9 lines
No EOL
212 B
Bash
9 lines
No EOL
212 B
Bash
#!/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" |