#!/bin/sh -

# noerr - run a given command discarding stderr
# Steve Kinzler, steve@kinzler.com, Apr 16
# https://kinzler.com/me/home.html#unix

# particularly useful for *csh where there's no straightforward way to do this

exec "$@" 2> /dev/null
