Skip to content

Instantly share code, notes, and snippets.

@codelahoma
Last active April 30, 2017 22:18
Show Gist options
  • Save codelahoma/347cce28acb2e2a66466abf2762e9971 to your computer and use it in GitHub Desktop.
Save codelahoma/347cce28acb2e2a66466abf2762e9971 to your computer and use it in GitHub Desktop.
Find in OMDB shell function
# Example:
#
# >fmdb jaws
#
# Jaws (1975)
# Jaws 2 (1978)
# Jaws: The Revenge (1987)
# Jaws 3-D (1983)
# The Making of Steven Spielberg's 'Jaws' (1995)
# In the Jaws of Life (1984)
# Jaws of Satan (1981)
# Cruel Jaws (1995)
# Mako: The Jaws of Death (1976)
# Jaws in Japan (2009)
fmdb () {
curl -s "http://www.omdbapi.com/?s=${*// /+/}" | jq -r '.Search[] | .Title + " (" + .Year + ")"'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment