[Solved] The SCRIPT command - Can we see the log file of a running session?

Hello.
This is my situation.

script .anything
ls -l .

---How can I see the content of .anything using (i.e) cat .anything?

If not possible can someone suggest a sequence to simulate a console-recorder
to "observ" from a RUNNING script session?

Thanks

Paolo

See if the script -x option might help (execution echo). Read man sh

a tail -f .anything perhaps? But not quite sure what you want... from another session of course... (xterm or...)

Thanks for your replies.
The only viable solution I' ve found is:
script -f (flush output after each write) .filename :wink:

paolo