「Linux」niceコマンドでプログラムの優先度を変更する

2021年3月19日

書式
nice オプション
使用例
1.デフォルトの優先度は0です
# nice free -s 1 >test21.txt &
2.優先度を低くする
# nice -n 10 free -s 1 >test21.txt &
3.優先度を高くする
# nice -n -10 free -s 1 >test21.txt &

Linux

Posted by arkgame