Repetidamente executa o comando bash enquanto não há saída de outro processo

3

Estou a correr fs_usage para detectar o acesso a um objeto no meu sistema de arquivos.

sudo fs_usage -w | grep -E 'object'

Agora quero executar um comando touch nesse objeto a cada 5 segundos, desde que não haja nova saída do comando acima por um período de 5 segundos.

    
por Christoph90 03.12.2014 / 20:45

2 respostas

2

sudo fs_usage -w | while true; do
    if read -rt5 && [[ $REPLY =~ objectpattern ]]; then
        # Some output happened in the last 5 seconds that matches object pattern
        :
    else 
        touch objectfile
    fi
done

Naturalmente, usar read -t significa que existe a possibilidade de haver alguma saída não correspondente a objectpattern ; se isso acontecer, o arquivo será tocado. Se você quiser evitar isso, temos que ficar um pouco mais sofisticados.

timeout=5
sudo fs_usage -w | while true; do
    (( mark = SECONDS + timeout ))
    if !read -rt$timeout; then
        touch objectfile
        timeout=5
    elif ![[ $REPLY =~ objectpattern ]]; then
        # Some output happened within timeout seconds that does _not_ match.
        # Reduce timeout by the elapsed time.
        (( timeout = mark - SECONDS ))
        if (( timeout < 1 )); then
            touch objectfile
            timeout=5
        fi
    else
        timeout=5
    fi
done
    
por 07.03.2015 / 18:17
0

Se eu entendi corretamente, provavelmente você quer fazer:

sh -c '{ fsusage             #your command runs (indefintely?)
         kill -PIPE "$$"     #but when it completes, so does this shell
       } >&3 &               #backgrounded and all stdout writes to pipe
       while sleep 5         #meanwhile, every 5 seconds a loop prints
       do    echo            #a blank line w/ echo
       done' 3>&1 |          #also to a pipe, read by an unbuffered (GNU) sed
sed -u '
### if first input line, insert shell init to stdout
### for seds [aic] commands continue newlines w/ \escapes
### and otherwise \escape only all other backslashes
1i\
convenience_func(){ : this is a function  \\
                      declared in target  \\
                      shell and can be    \\
                      called from sed.; }
### if line matches object change it to command
/object/c\
# this is an actual command sent to a shell for each match
### this is just a comment - note the \escaped newlines above                    
### delete all other nonblank lines; change all blanks
/./d;c\
# this is a command sent to a shell every ~5 seconds
' | sh -s -- This is the target shell and these are its   \
             positional parameters. These can be referred \
             to in sed\'s output like '"$1"' or '"$@"' as \
             an array. They can even be passed along to   \
             'convenience_func()' as arguments.

Cerca de 90% dos itens acima consistem em comentários. Basicamente, pode ser reduzido a ...

sh -c '(fsusage;kill "$$") >&3 &
       while sleep 5; do echo; done
' 3>&1| 
sed -nue '/pattern/c\' -e 'echo match
          /./!c\'      -e 'touch -- "$1"
' | sh -s -- filename
    
por 08.03.2015 / 08:22