Jan 6, 2004 #1 props Technical User Joined Nov 22, 2003 Messages 17 Location GB i have create a terminal session file named myscript using : script myscript Now i want to append on this file what i typed is script -a myscript but it does not, work just overwrites on the previous iformation any help ?
i have create a terminal session file named myscript using : script myscript Now i want to append on this file what i typed is script -a myscript but it does not, work just overwrites on the previous iformation any help ?
Jan 6, 2004 #2 Cagliostro Programmer Joined Sep 13, 2000 Messages 4,226 Location GB great, but how it is connected to C++? Ion Filipski Upvote 0 Downvote
Jan 7, 2004 #3 jstreich Programmer Joined Apr 20, 2002 Messages 1,067 Location US He's probably typescripting the errors. Hows about using cat... something like: Code: script myscript script secondscript cat secondscript >> myscript if the >> causes secondscript to replace myscript, then use > instead (I always mix up which is append). Upvote 0 Downvote
He's probably typescripting the errors. Hows about using cat... something like: Code: script myscript script secondscript cat secondscript >> myscript if the >> causes secondscript to replace myscript, then use > instead (I always mix up which is append).