Skip to content

Instantly share code, notes, and snippets.

@z448
Created November 20, 2016 19:18
Show Gist options
  • Save z448/87cb84d7f719a8ab1d3a3e64953c9414 to your computer and use it in GitHub Desktop.
Save z448/87cb84d7f719a8ab1d3a3e64953c9414 to your computer and use it in GitHub Desktop.
list paths to all video files in iOS SafariQueue app
#!/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