#!/usr/bin/env sh awk -v path=$PATH_INFO ' BEGIN { if (path == "/") { print "Content-type: text/plain\n \ You'\''ve reached Armaan'\''s link shortner. Not much to see here on the index" cut = 1 exit 1 } } path == $1 { printf "Content-type: text/html\n \ \ \ \

If you are not redirected automatically, please follow this link: \ %s.

\ \n", $2, $2, $2 cut = 1 exit 0 } END { if (cut) exit 0 print "Status: 404 \ Content-type: text/plain\n \ Path not found." } ' ${1:-/etc/slink}