#!/bin/sh -

# quote - single-quote each line of input for shell processing
# Steve Kinzler, steve@kinzler.com, Oct 93/Sep 09
# https://kinzler.com/me/home.html#unix

exec sed "s/'/'\\\\''/g; s/^/'/; s/$/'/"
