I am running the following program
#!/bin/bash
for (( x=1; x<=180; x++ ))
do
./speed && perl load_tables.pl && Rscript Test.R
done
but after some loops I get the error
Profiling timer expired
How can I fix it?
I am running the following program
#!/bin/bash
for (( x=1; x<=180; x++ ))
do
./speed && perl load_tables.pl && Rscript Test.R
done
but after some loops I get the error
Profiling timer expired
How can I fix it?
You can make your script ignore the SIGPROF signal by adding this command at the top:
trap "" SIGPROF
This registers a signal handler for SIGPROF that does nothing (the empty string).