Created
November 20, 2016 19:18
-
-
Save z448/87cb84d7f719a8ab1d3a3e64953c9414 to your computer and use it in GitHub Desktop.
list paths to all video files in iOS SafariQueue app
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 | |
for i in `find ~/*/Data/A* -name ".com*"`;do if [[ `cat $i|grep iQ` ]]; then find `dirname $i` -name '*.mp4'; fi; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment