Skip to content

Instantly share code, notes, and snippets.

@ajayk
Created April 2, 2024 20:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ajayk/95750e2bb34bff66e64d0aea1e34e2b4 to your computer and use it in GitHub Desktop.
Save ajayk/95750e2bb34bff66e64d0aea1e34e2b4 to your computer and use it in GitHub Desktop.
verify.sh
#!/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