Need help on SCRIPT(1M) utility


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Need help on SCRIPT(1M) utility
# 1  
Old 11-23-2006
Data Need help on SCRIPT(1M) utility

Hi All,

I need to do a lot of manual entries at shell prompt.
So to collect the logs(each command fired in that session, i use "SCRIPT(1) : make typescript of terminal session"
this is kool,but the problem here is that it saves the linefeed, and backspaces along with the commands in the log file,therefore opening this file in the vi editor is not a good idea.
How can i remove the linefeed/backspace characters from the log file.if this is not possible then is there any other such utility.
Mentioned below is a logfile created using SCRIPT.
------------------------------------------------------------------------------
1: start the script
$ script -a <scrap>
Script started, file is scrap
2;<now fire some commands,i delibretly used backspace and tabstops while firing the command>
3:exit
root@hw/ $ exit
Script done, file is scrap
4: open in vi editor
$ vi scrap
Script started on Wed Nov 22 01:49:21 2006
root@hw/ $ dat^M
sh: dat: not found.^M
root@hw/ $ dat^?^?^?^H^G^H ^H^H^H^G^G^H ^H^H^H^G^G^H ^H^H^H^G^G ^H^H^G^G^G^M
sh: da: not found.^M
root@hw/ $ date ; wh^H^G ^H^H^G^G ^H^H^G^G^M
Wed Nov 22 01:49:50 MST 2006^M
root@hw/ $ echo ^H^G ^H^H^G^G ^H^H^G ^Hho "hi how are ^H^G ^H^H^G^G ^H^H^G^G ^H^H^G ^Hare you^H^G ^H^H^G^G ^Hou"^M
hi how are you^M
root@hw/ $ ^M
script done on Wed Nov 22 01:50:44 2006


Thanks
~amit
# 2  
Old 11-23-2006
This is really a interesting property of terminals to work with ( master and a slave)

Even once I tried to write my own version of script command,
with date-time stamping, userid and hostname stamping.

As said it would capture everything, literally everything.

Where the problem arises is,
we need to derive the pattern of so-called junk characters all those - ^v, ^M stuff.
mostly for utilities where it execs shell and has the tty controls itself rather giving it to the shelf.

Steps I went through
1) Determine the pattern and give a bulk replace
2) All such patterns to be replaced in a run
3) Such patterns with vi empty lines and command line utility would be easier to determine
4) Difficult part comes with the utilities which run as curses program.

Still am not successful with the 4th pt. Smilie
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Script to automation utility app

Hi All, Am trying to write a shell script to automate one of the product utility but am struck with how to send/key in the inputs and most importantly it requires to press "Enter" key every time after giving the input. Not sure how to take control of utility from script and key in... (1 Reply)
Discussion started by: Optimus81
1 Replies

2. Homework & Coursework Questions

script similar to rm utility

1. The problem statement, all variables and given/known data: saferm is a replacement for the rm utility. Rather than removing files, it move files in a sub directoy called".saferm" in the user's home directory. If "~/.saferm" doesn't exist, it is automatically created. The -l options lists the ... (3 Replies)
Discussion started by: Joey12
3 Replies

3. Shell Programming and Scripting

Using sendmail utility in K Shell script

Hi, I am new to shell scripting and thus any help will be highly appreciated. I need to write a K shell script where in the email sending feature should be handled by sendmail utility and I have come up with the following : #!/usr/bin/ksh echo "This is a test mailest mail" | /usr/lib/sendmail... (4 Replies)
Discussion started by: sdiptanil
4 Replies

4. Shell Programming and Scripting

I need help to run this utility from a shell script

I need some help to run this executable from within a shell script. The Script is run the following way at the command prompt. $rateupd Main Menu --Standard Output ----------- --Standard Output 1. - Update Rate --Standard Output 2. - Exit. --Standard Output Enter Selection: 1 --User... (5 Replies)
Discussion started by: rajeeb_d
5 Replies

5. Shell Programming and Scripting

script not working...select utility

#!/usr/bin/bash name="$@" myname=malay #echo $myname select firstname in $name; do if ;then echo $firstname else break fi done invoking with:- ./script.sh one two three four five six seven eight nine malay (6 Replies)
Discussion started by: mobydick
6 Replies

6. Shell Programming and Scripting

Writing a Utility Script

Hi All ,, I have couple of shell scripts .. I am trying to build a Utility script which would call each script example :: ======== 1) uni.sh 2) uni2.sh 3)uni3.sh when i run the Util script it will come as a menu ,, once i press 1 it will call the first shell script and runs it ..... (10 Replies)
Discussion started by: raghav1982
10 Replies

7. Shell Programming and Scripting

Help on how to call a utility from script

Hi, I am new to shell scripting (sh) I need a script which will call a utility & once u call it.It will ask for inputs on the screen.These inputs it needs to get or read from a txt file. for e.g #! /bin/sh while read line do echo $line done txt file will have test 01/01/2008 ... (3 Replies)
Discussion started by: innocent
3 Replies

8. Shell Programming and Scripting

sort utility in script ?

Hi friends, I want to use sort command in script. I used the following syntax in my scipt, sort -t '|' +3 tempcdrext4.cdr > temp.mocdr It give me a error " Input file specified two times." but this command work fine in the prompt without any problem. Can sombody please tell me who... (2 Replies)
Discussion started by: maheshsri
2 Replies

9. Shell Programming and Scripting

cdrdao utility script

friends, i love ya... i wrote a script to automate using cdrdao to burn an audio cd from mp3 files, using the great tutorial at http://tldp.org/HOWTO/MP3-CD-Burning/index.html (check out the site, i believe that it's very well-written). i messed around with it and got to a place where i felt... (2 Replies)
Discussion started by: snwright
2 Replies
Login or Register to Ask a Question