#!/bin/bash
#
# ED "Link of the Now" Generator
# 
# HOWTO:
# 1. Click "upload with new input"
# 2. In the "enter your input (stdin)" box, type the
# namespace, month, year and number of days in the month, e.g.:
# Article February 2013 28 
#

# This portion contains the actual payload
read namespace month year days
for (( i=$days ; $i != 0 ; i-- ))
do
    echo "*[[Encyclopedia Dramatica:$namespace of the Now/$month $i, $year|$month $i, $year]] - "
done
# Pwnt.