Created
April 2, 2024 20:15
-
-
Save ajayk/95750e2bb34bff66e64d0aea1e34e2b4 to your computer and use it in GitHub Desktop.
verify.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Loop through each file in the directory | |
for file in *.apk | |
do | |
# Run the apk verify command for the current file | |
apk verify "$file" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment