On 16.03.19 05:46, Ai Bo wrote:
> I am running a long running program. I would like to log the output.
> I have tried:
> ../sage-8.6/sage test.sage > test.log &
I used something along
PYTHONUNBUFFERED=whatever ../sage-8.6/sage test.sage > test.log &
a couple of times.
Daniel
--
You receiv
> On Mar 16, 2019, at 02:33 , dimp...@gmail.com wrote:
>
> On Fri, Mar 15, 2019 at 10:21:48PM -0700, 'Justin C. Walker' via sage-devel
> wrote:
>>
>>> On Mar 15, 2019, at 21:46 , Ai Bo wrote:
>>>
>>> I am running a long running program. I would like to log the output.
>>> I have tried:
>>>
On Fri, Mar 15, 2019 at 10:21:48PM -0700, 'Justin C. Walker' via sage-devel
wrote:
>
> > On Mar 15, 2019, at 21:46 , Ai Bo wrote:
> >
> > I am running a long running program. I would like to log the output.
> > I have tried:
> > ../sage-8.6/sage test.sage > test.log &
> >
> > There is nothin
> On Mar 15, 2019, at 21:46 , Ai Bo wrote:
>
> I am running a long running program. I would like to log the output.
> I have tried:
> ../sage-8.6/sage test.sage > test.log &
>
> There is nothing written in test.log before the program finishes.
> I tried to use tee, same problem.
>
> I trie
I am running a long running program. I would like to log the output.
I have tried:
../sage-8.6/sage test.sage > test.log &
There is nothing written in test.log before the program finishes.
I tried to use tee, same problem.
I tried to add:
f = open('test.log', 'w')
in my test.sage program, sti