Sponsored Content
Full Discussion: Execution Problems!!
Top Forums Shell Programming and Scripting Execution Problems!! Post 302527207 by mrhiab on Thursday 2nd of June 2011 09:17:58 PM
Old 06-02-2011
Execution Problems!!

i have been working on this for a about 12 hours today say's end of file un expected any idea's
using the bourne shell and its driving me nuts worked fine in bash but prof says make it work in bourne and good luck worth 13%
any help would be awesome
Code:
#!/bin/sh

trap "rm mnt2/source/tmp/* 2> /dev/null; exit"0123
phonefile=/source/corp_phones
looptest=y
while test "$looptest" = "y"
do
clear
tput cup 1 4; echo "Corporate Phone List Additions"
tput cup 2 4; echo "=============================="
tput cup 4 4; echo "Phone Number: "
tput cup 5 4; echo "Last Name :"
tput cup 6 4; echo "First Name :"
tput cup 7 4; echo "Middle Init :"
tput cup 8 4; echo "Dept# :"
tput cup 9 4; echo "Job Title :"
  tput cup 10 4; echo "Date Hired :"
tput cup 12 4; echo "Add Another? (y)es or (q)uit: "
tput cup 4 18; read phonenum
if test $phonenum = "q"
then
clear ; exit
fi
tput cup 5 18 ; read lname
while test "$lname" = "-"
do
tput cup 4 18 ; echo " "
tput cup 4 18 ; read phonenum
if test "$phonenum" = "q"
then
clear ; exit
fi
tput cup 5 18 ; read lname
done
tput cup 6 18 ; read fname
while test "$fname" = "-"
do
tput cup 5 18 ; echo " "
tput cup 5 18 ; read lname
if test "$lname" = "q"
then
clear ; exit
fi
tput cup 6 18 ; read fname
done
tput cup 7 18 ; read midinit
while test "$midinit" = "-"
do
tput cup 6 18 ; echo " "
tput cup 6 18 ; read fname
if test "$fname" = "q"
then
clear ; exit
fi
tput cup 7 18 ; read midinit
done
tput cup 8 18 ; read deptno
while test "$deptno" = "-"
do
tput cup 7 18 ; echo " "
tput cup 7 18 ; read midinit
if test "$midinit" = "q"
then
clear ; exit
fi
tput cup 8 18 ; read deptno
  
done
tput cup 9 18 ; read jobtitle
while test "$jobtitle" = "-"
do
tput cup 8 18 ; echo " "
tput cup 8 18 ; read deptno
if test "$deptno" = "q"
then
clear ; exit
fi
tput cup 9 18 ; read jobtitle
7
done
tput cup 10 18; read datehired
while test "$datehired" = "-"
do
tput cup 9 18 ; echo " "
tput cup 9 18 ; read jobtitle
if test "$jobtitle" = "q"
then
clear ; exit
fi
tput cup 10 18 ; read datehired
done
#Check to see if last name is not blank before you
#write to disk
if test "$lname" != ""
then
echo"$phonenum:$lname:$fname:$midinit:$deptno:
$jobtitle:$datehired" >> $phonefile
fi
tput cup 12 33 ; read looptest
if test "$looptest" = "q"
then
clear ; exit
fi
done


Last edited by pludi; 06-03-2011 at 04:09 AM..
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

execution problems with curl

I have been getting error "curl: (7) Failed to connect to IP number 1" when using the CURL command Could someone help??? (1 Reply)
Discussion started by: infernalhell
1 Replies

2. Programming

execution problems with cron

how to store a date into file? and how we can access date from the file? ---------- Post updated at 06:09 AM ---------- Previous update was at 06:08 AM ---------- how we can store date in file? (1 Reply)
Discussion started by: causalmodi777
1 Replies

3. Homework & Coursework Questions

Execution Problems with sed

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Okay so I am taking bash scripting this semester and we are now working on the stream editor sed. For our book we... (4 Replies)
Discussion started by: aggie6970
4 Replies

4. Shell Programming and Scripting

Execution Problems

this my source file ************* fixed *************** Begin equipmentId : d9 processor : fox number : bhhhhhh Variable # 1: Id : 100 Type : 9 nType : s gType : 5f mType : 4 LField : England DataField : london Length ... (6 Replies)
Discussion started by: teefa
6 Replies

5. Shell Programming and Scripting

Execution Problems with if statements

Hi all, I habe a file called test.log, which contain following data : 0.0 0.1 0.1 0.1 0.1 0.2 0.3 0.3 0.4 0.4 0.6 8.7 8.8 17.2 I want to show the data which gater than 9.0 But my script not working. (4 Replies)
Discussion started by: mnmonu
4 Replies

6. Shell Programming and Scripting

Execution problems with scripting

Hi, I am new to scripting.I had one problem infront of me.I tried in many ways with minimal knowledge........Kindly help me. Description: I want a shell script where it has to read an input.txt file and need to remove duplicate lines and the result need to kept in output.txt file. input... (5 Replies)
Discussion started by: bhas
5 Replies

7. Solaris

Execution problems with Mailx

Unable to send mail using mailx command. I am using solaris 5.9 I am trying to send notification for the scheduled jobs in crob but the mailx is not working. Checked the settings in submit.cf and sendmail.cf but unable to find the solution. Error message root@sshldb # nslookup mailhost... (8 Replies)
Discussion started by: Srinathkiru
8 Replies

8. Shell Programming and Scripting

Execution problems with sed

Hi,I confused how to use sed to deal with big file. example: the big file have some different urls just with filename. how can i use sed to fetch url except file name and replace to other urls with filename? thanks!!! (11 Replies)
Discussion started by: hshzh359
11 Replies

9. UNIX for Dummies Questions & Answers

Execution Problems with Crons

Buddies, cron is not executing any monitoring scripts for 'Oracle' user in Red Hat Linux 5. Details about the cron job :- oracle@localhost ~]$ crontab -l 15 7 * * * /home/oracle/tab.sh The tab.sh script when firing manually is working fine. Any inputs/advice will be great for me. (12 Replies)
Discussion started by: sandip250382
12 Replies

10. UNIX for Beginners Questions & Answers

Execution problems

How to find a word in a directory which contains many files? i just want to count how many such words are present in all the files? This is the code which i tried for a single file echo "Enter the file name:" read file echo "Enter the word to search:" read word if then echo "The count... (4 Replies)
Discussion started by: Meeran Rizvi
4 Replies
tput(1) 						      General Commands Manual							   tput(1)

NAME
tput - Queries the terminal information database SYNOPSIS
tput [-S] [-T term] [capability_name [parameter...]] The tput command uses the terminfo database to make terminal-dependent information available to the shell. STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: tput: XCU5.0 Refer to the standards(5) reference page for more information about industry standards and associated tags. OPTIONS
[Tru64 UNIX] Specifies that input be received from standard input. Specifies the terminal type. By default, the terminal type is taken from the environment variable TERM. OPERANDS
The capability_name argument may be one of the following special strings: Displays the clear-screen sequence. Displays the sequences that initialize the user's terminal. [Tru64 UNIX] Displays the terminfo long name for the terminal. Displays the sequences that reset the user's terminal. DESCRIPTION
The capability_name argument indicates the attribute type from a terminfo file. The output of the tput command is a string if the attribute capability_name is of the type string, or an integer if the attribute is of the type integer. If the capability_name is of the type Boolean, the tput command sets the exit value to zero (0) for TRUE, 1 for FALSE, and produces no other output. For more information, see the terminfo(4) reference page. NOTES
If your terminal does not support the requested capability, it is not an error. EXIT STATUS
Equals FALSE Boolean value or the requested string was written successfully. [Tru64 UNIX] Equals TRUE Boolean value. Specifies a usage error. Specifies that information on this terminal is not available. Specifies that the capability_name is invalid. Specifies that an error occurred. EXAMPLES
To echo the clear-screen sequence for the current terminal: # tput clear To display the number of columns for the current terminal: # tput cols To set and unset the highlight-mode sequences for the current terminal: # bold=`tput smso` # unbold=`tput rmso` If you are using the C shell (csh), the argument to set and unset sequences must be enclosed in double quotes: # bold="`tput smso`" # unbold="`tput rmso`" Both of these examples can be followed by a prompt: echo "${bold}Please type in your name:${unbold} To set the exit value to indi- cate if the current terminal is a hardcopy terminal: tput hc If you are using the C shell (csh), the exit value for the preceding example is stored in $status; otherwise, the exit value is stored in $?. To move the cursor to line 2, row 2: tput cup 2 2 ENVIRONMENT VARIABLES
The following environment variables affect the execution of tput: Provides a default value for the internationalization variables that are unset or null. If LANG is unset or null, the corresponding value from the default locale is used. If any of the internationalization vari- ables contain an invalid setting, the utility behaves as if none of the variables had been defined. If set to a non-empty string value, overrides the values of all the other internationalization variables. Determines the locale for the interpretation of sequences of bytes of text data as characters (for example, single-byte as opposed to multibyte characters in arguments). Determines the locale for the for- mat and contents of diagnostic messages written to standard error. Determines the location of message catalogues for the processing of LC_MESSAGES. FILES
Terminal information database Definition files curses library definition file SEE ALSO
Commands: stty(1), tabs(1) Routines: curses(3) Files: terminfo(4) Standards: standards(5) tput(1)
All times are GMT -4. The time now is 08:41 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy