view usearch_wrapper.sh @ 31:38e5953ca25f draft

Uploaded
author serranop
date Sat, 14 Sep 2013 12:41:19 -0400
parents eec0db6ca419
children eca87767a73c
line wrap: on
line source

#!/bin/bash
echo "$*"
OUTPUT=`$* 2>&1`
if [ $? -ne 0 ]
then
    echo "ERROR: $OUTPUT" 1>&2
    exit
fi
echo $OUTPUT