Jan 6, 2004 #1 props Technical User Nov 22, 2003 17 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 Sep 13, 2000 4,226 GB great, but how it is connected to C++? Ion Filipski Upvote 0 Downvote
Jan 7, 2004 #3 jstreich Programmer Apr 20, 2002 1,067 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).