I am running one binary with highest priority like
nice -n -20 binary
Now I want to run same binary such that it runs with high priority without nice -n 20 binary like
./binary // runs with high priority same as nice -n -20 binary with any setting
Are there any configurations which says kernel to start process with higher priority when I start binary with ./binary,I don't wont to start binary with nice -n -20 binary every time
So how to do it give your suggestion