Skip to content

Instantly share code, notes, and snippets.

@iamvee
Created March 27, 2020 19:40
Show Gist options
  • Save iamvee/dfef7656367671b8e29f7631a2a27387 to your computer and use it in GitHub Desktop.
Save iamvee/dfef7656367671b8e29f7631a2a27387 to your computer and use it in GitHub Desktop.
search course subtitles to find the videos
function course-find-word() {
egrep -i $1 ./**/*.vtt -B1
egrep -i $1 ./**/*.vtt -B1 | grep -o '.*[0-9][0-9][0-9] - ' | sort | uniq | wc
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment