Created
November 7, 2013 12:04
-
-
Save jgdoncel/7353551 to your computer and use it in GitHub Desktop.
Ejemplo de llamada en un CGI perl usando ionice para definir la prioridad del proceso de ejecución. From http://manpages.courier-mta.org/htmlman1/ionice.1.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ionice -c 3 -p 89 Sets process with PID 89 as an idle I/O process. | |
| # ionice -c 2 -n 0 bash Runs 'bash' as a best-effort program with highest priority. | |
| # ionice -p 89 91 Prints the class and priority of the processes with PID 89 and 91. | |
| system ("ionice -c 2 -n 7 pdftk $tmp1 $tmp2 output -"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment