Skip to content

Instantly share code, notes, and snippets.

@JulianDuniec
Forked from charud/Lunarizer
Created August 13, 2012 14:17
Show Gist options
  • Select an option

  • Save JulianDuniec/3341140 to your computer and use it in GitHub Desktop.

Select an option

Save JulianDuniec/3341140 to your computer and use it in GitHub Desktop.
Lunarize a string from shell
#!/bin/sh
#
# Lunarizer
# =========
#
# Installation
# ------------
# $ sudo chmod +x lunar
# $ sudo cp lunar /usr/local/bin/lunar
#
# Usage
# -----
# $ lunar Mer lunar!
# aZZå Mer LUnar!!! *kjamar*%
#
if [ $# -lt 1 ]; then
echo "Missing text to lunarize";
echo "Usage: lunar {text}";
exit 2;
fi
curl -d "lunartext=$*&ajax=1" http://tapiren.se/lunarizer/
@charud
Copy link
Copy Markdown

charud commented Aug 13, 2012

Updated original with your modifiations. Thanks Julian

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment