checkGplayLimitation.sh 231 B

12345678910111213
  1. #!/usr/bin/env bash
  2. result=""
  3. for log in fastlane/metadata/android/*/changelogs/*
  4. do
  5. if [[ -e $log && $(wc -m $log | cut -d" " -f1) -gt 500 ]]
  6. then
  7. result=$log"<br>"$result
  8. fi
  9. done
  10. echo -e "$result";