Re: Terminal logger

2007-11-25 Thread Kfir Lavi
Yep, you are right, this is not what the OP wanted. Kfir On Nov 23, 2007 1:25 PM, Geoff Shang [EMAIL PROTECTED] wrote: Kfir Lavi wrote: Simple solution: history | cut -d ' ' -f 5-20 For the record, this command would not give the results of commands, just the commands themselves. As

Re: Terminal logger

2007-11-23 Thread Geoff Shang
Kfir Lavi wrote: Simple solution: history | cut -d ' ' -f 5-20 For the record, this command would not give the results of commands, just the commands themselves. As others have said, script should do the job nicely. Geoff.

Terminal logger

2007-11-21 Thread Shachar Shemesh
Hi all, I'm looking for a program (I knew it once) that saves to a log file every command written on a terminal, as well as its results. I need it so that when I'm instructing a class, I can then give them a log of everything I did. Thanks, Shachar

Re: Terminal logger

2007-11-21 Thread Jacob Broido
script(1) On Nov 21, 2007 3:46 PM, Shachar Shemesh [EMAIL PROTECTED] wrote: Hi all, I'm looking for a program (I knew it once) that saves to a log file every command written on a terminal, as well as its results. I need it so that when I'm instructing a class, I can then give them a log of

Re: Terminal logger

2007-11-21 Thread Jacob Broido
or use screen(1) logging. On Nov 21, 2007 3:58 PM, Jacob Broido [EMAIL PROTECTED] wrote: script(1) On Nov 21, 2007 3:46 PM, Shachar Shemesh [EMAIL PROTECTED] wrote: Hi all, I'm looking for a program (I knew it once) that saves to a log file every command written on a terminal, as

Re: Terminal logger

2007-11-21 Thread Muli Ben-Yehuda
On Wed, Nov 21, 2007 at 03:46:40PM +0200, Shachar Shemesh wrote: Hi all, I'm looking for a program (I knew it once) that saves to a log file every command written on a terminal, as well as its results. I need it so that when I'm instructing a class, I can then give them a log of everything

Re: Terminal logger

2007-11-21 Thread Vitaly
script? On Nov 21, 2007 3:46 PM, Shachar Shemesh [EMAIL PROTECTED] wrote: Hi all, I'm looking for a program (I knew it once) that saves to a log file every command written on a terminal, as well as its results. I need it so that when I'm instructing a class, I can then give them a log of

Re: Terminal logger

2007-11-21 Thread Kfir Lavi
Simple solution: history | cut -d ' ' -f 5-20 Kfir On Nov 21, 2007 3:46 PM, Shachar Shemesh [EMAIL PROTECTED] wrote: Hi all, I'm looking for a program (I knew it once) that saves to a log file every command written on a terminal, as well as its results. I need it so that when I'm