You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Related issue: #372 nohup ./script.sh && Anycommand can works for a while, however, after several minutes the command stops althouth the loop shouldn't stop
the content of script is: LD_PRELOAD=$LD_LIBRARY_PATH:/usr/lib/x86_64-linux-gnu/faketime/libfaketime.so.1 FAKETIME="2020-01-01 00:00:00" command
The text was updated successfully, but these errors were encountered:
Could you please post a complete example showing that effect? I don't see the loop you mentioned. It'd be also helpful to have a concrete example of a command where this happens.
It's surprising I find an alternative way.
The command below works correctly: LD_PRELOAD=/usr/lib/x86_64-linux-gnu/faketime/libfaketime.so.1 FAKETIME="2020-01-01 00:00:00" FAKETIME_STOP_AFTER_SECONDS=1 nohup COMMAND
However, if I create a .sh file contains:LD_PRELOAD=/usr/lib/x86_64-linux-gnu/faketime/libfaketime.so.1 FAKETIME="2020-01-01 00:00:00" FAKETIME_STOP_AFTER_SECONDS=1
Then I run nohup ./script.sh && COMMAND
The syntax stopped due to unknown errors.
Related issue: #372
nohup ./script.sh && Anycommand
can works for a while, however, after several minutes the command stops althouth the loop shouldn't stopthe content of script is:
LD_PRELOAD=$LD_LIBRARY_PATH:/usr/lib/x86_64-linux-gnu/faketime/libfaketime.so.1 FAKETIME="2020-01-01 00:00:00" command
The text was updated successfully, but these errors were encountered: