dotfiles/tools/benice

9 lines
118 B
Bash
Executable File

#!/bin/bash
set -e
IONICE="ionice -c3"
if [[ "$OSTYPE" == "darwin"* ]]; then
IONICE=""
fi
$IONICE nice -n20 "$@"