8 lines
118 B
Bash
Executable file
8 lines
118 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
IONICE="ionice -c3"
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
IONICE=""
|
|
fi
|
|
$IONICE nice -n20 "$@"
|
|
|