oh-my-zsh/plugins/octozen/octozen.plugin.zsh
2017-03-13 14:37:32 +01:00

14 lines
246 B
Bash

# octozen plugin
# Displays a zen from octocat
#
function display_octozen() {
local command="curl -s https://api.github.com/octocat"
local zen=$(eval ${command})
if [ "$zen" != "" ]; then
printf '%s\n' ${zen}
fi
}
display_octozen