mirror of
https://github.com/nextcloud/android.git
synced 2024-11-22 21:25:35 +03:00
14 lines
231 B
Bash
14 lines
231 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
result=""
|
||
|
|
||
|
for log in fastlane/metadata/android/*/changelogs/*
|
||
|
do
|
||
|
if [[ -e $log && $(wc -m $log | cut -d" " -f1) -gt 500 ]]
|
||
|
then
|
||
|
result=$log"<br>"$result
|
||
|
fi
|
||
|
done
|
||
|
|
||
|
echo -e "$result";
|