executa um programa com timeout enviando múltiplos sinais em diferentes tempos

0

Eu preciso executar um programa com tempo limite com vários limites de tempo e sinais diferentes para os limites.

por exemplo:

executa nano com tempo limite enviando SIGTERM após 5s e após 10s SIGKILL

    
por Qbongo 10.01.2016 / 21:02

1 resposta

0

O programa 'sleep' é a parte do pacote coreutils.

Apenas execute este comando no console:

man sleep

E você encontrará a página de manual sobre este programa.

NAME
       sleep - delay for a specified amount of time

SYNOPSIS
       sleep NUMBER[SUFFIX]...
       sleep OPTION

DESCRIPTION
       Pause  for  NUMBER  seconds.   SUFFIX may be 's' for seconds (the default), 'm' for minutes, 'h' for hours or 'd' for days.  Unlike most implementations that require NUMBER be an integer, here
       NUMBER may be an arbitrary floating point number.  Given two or more arguments, pause for the amount of time specified by the sum of their values.

       --help display this help and exit

       --version
              output version information and exit

AUTHOR
       Written by Jim Meyering and Paul Eggert.
    
por 10.01.2016 / 21:15

Tags