Different between `ulimit -e` and `renice`?
5
votes
1
answer
2074
views
I would like to run a backup script in low CPU and disk I/O.
Is there any different between this:
#!/bin/bash
ulimit -e 19
ionice -c3 -p $$
and this:
#!/bin/bash
ionice -c3 -p $$
renice -n 19 -p $$
Asked by quanta
(1700 rep)
Jul 23, 2014, 03:28 AM
Last activity: Jul 23, 2014, 10:51 PM
Last activity: Jul 23, 2014, 10:51 PM