#!/bin/sh

# err -- execute any command and dump errors to 'errlist'

$* 2> errlist
cat errlist

