mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-28 18:28:35 -05:00
7 lines
145 B
Bash
Executable File
7 lines
145 B
Bash
Executable File
#!/bin/sh
|
|
|
|
apiKey=946f500a
|
|
movie=$( (echo "$@" | tr " " + ) | sed 's/-d+//g' )
|
|
|
|
curl -s "http://www.omdbapi.com/?t=$movie&apikey=$apiKey" | jq .
|