#!/bin/sh
# $Id: with-low-priority,v 1.1 2010/06/18 23:31:39 friedman Exp $

ulimit -c 0     # blocks
ulimit -s 1024  # kbytes

trap '' 1  # nohup

exec nice -n 19 \
     ionice -c 3 \
     ${1+"$@"}

# eof
