#!/bin/sh
# Quick wrapper to URL-encode stdin to stdout, via Perl.

exec perl -MURI::Escape -00 -p -e 'chomp; $_ = uri_escape $_'
