In Linux I would like to run a program but only for a limited time, like 1 second. If the program exceeds this running time I would like to kill the process and show an erro
tail -f file & pid=$! sleep 10 kill $pid 2>/dev/null && echo '...'