checkGplayLimitation.sh 432 B

123456789101112131415161718
  1. #!/usr/bin/env bash
  2. #
  3. # SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors
  4. # SPDX-FileCopyrightText: 2021 Andy Scherzinger <info@andy-scherzinger.de>
  5. # SPDX-License-Identifier: GPL-3.0-or-later
  6. #
  7. result=""
  8. for log in fastlane/metadata/android/*/changelogs/*
  9. do
  10. if [[ -e $log && $(wc -m $log | cut -d" " -f1) -gt 500 ]]
  11. then
  12. result=$log"<br>"$result
  13. fi
  14. done
  15. echo -e "$result";