#!/bin/sh
if command -v ionice &>/dev/null; then
  exec ionice -c idle nice "$@"
else
  exec nice "$@"
fi
