Ecco il mio comando che sto usando in uno script per grep
i dati in tempo reale. Non sembra estrarre correttamente i dati in tempo reale poiché manca solo alcune righe.
tail -f <file> | fgrep "string" | sed 's/stuff//g' >> output.txt
Cosa farebbe il seguente comando? Che cos'è il "buffering di riga"?
tail -f <file> | fgrep --line-buffered "string" | sed 's/stuff//g' >> output.txt