Last active
April 30, 2017 22:18
-
-
Save codelahoma/347cce28acb2e2a66466abf2762e9971 to your computer and use it in GitHub Desktop.
Find in OMDB shell function
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
# 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