Script is not getting executed


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Script is not getting executed
# 1  
Old 11-02-2017
Script is not getting executed

Hi All,

I have written a programme where i need to work in one session but when that session get executed it doesnt execute other programme till I write exit. Below is the script
Code:
#!/bin/bash
echo 'Going to start'
exectrusteduser.com sh.com
cd /UAT_Logs/CDCI_LOGS/SEEDADM
pwd
echo $B2K_SESSION_ID

in the above script
Code:
 exectrusteduser.com sh.com

is to create session
below is output
Code:
uatapp1: /UAT_Logs/CDCI_LOGS/SEEDADM > ./123.sh
Going to start
PuTTY$
sh: PuTTY:  not found
$
$ exit
UAT_Logs/CDCI_LOGS/SEEDADM

in the ouput exit has written manually
# 2  
Old 11-02-2017
And the question is . . . ?
# 3  
Old 11-02-2017
how to execute the programme in that session only automatically without coming out
# 4  
Old 11-02-2017
What do you mean by 'execute other programme'? What other programme are you trying to do?

Are you trying to feed input into exectrusteduser?
# 5  
Old 11-03-2017
the programme after exectrusteduser.com sh.com line is not getting executed
# 6  
Old 11-03-2017
Without knowing what the command:
Code:
exectrusteduser.com sh.com

does, we can only make wild guesses at what needs to be done. Two wild guesses that might work for you would be:
Code:
#!/bin/bash
echo 'Going to start'
exectrusteduser.com sh.com <<"EOF"
exit
EOF
cd /UAT_Logs/CDCI_LOGS/SEEDADM
pwd
echo $B2K_SESSION_ID

and:
Code:
#!/bin/bash
echo 'Going to start'
exectrusteduser.com sh.com < /dev/null
cd /UAT_Logs/CDCI_LOGS/SEEDADM
pwd
echo $B2K_SESSION_ID

This User Gave Thanks to Don Cragun For This Post:
# 7  
Old 11-03-2017
thanks
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Create file when script has executed

I would like to get some kind of notification when a script has been executed. I know how to get an email sent, but I something different. This works, unless it occurs when I am not at my computer. notify-send "Cleanup of Backup Directories complete." It could even involve creating... (2 Replies)
Discussion started by: drew77
2 Replies

2. Shell Programming and Scripting

Capture run time of python script executed inside shell script

I have bash shell script which is internally calling python script.I would like to know how long python is taking to execute.I am not allowed to do changes in python script.Please note i need to know execution time of python script which is getting executed inside shell .I need to store execution... (2 Replies)
Discussion started by: Adfire
2 Replies

3. Shell Programming and Scripting

INIT Script Getting Executed Twice?

Hello All, I copied and pasted the "/etc/init.d/skeleton" file to a new one so I could create my own init script for a program. Basically the ONLY edit I made to the skeleton "template" so far was to search and replace "FOO" with "snort". *NOTE: I know there are a bunch of snort init scripts... (6 Replies)
Discussion started by: mrm5102
6 Replies

4. Shell Programming and Scripting

Shell script not getting executed

Hi As per my requirement when I run . ./file.sh am getting the following error -bash:ELF: command not found when i execute as ./file.sh it is getting executed.How to resolve this. Thanks in advance. (3 Replies)
Discussion started by: pracheth
3 Replies

5. Shell Programming and Scripting

Shell script executed from Informatica ETL tool is spawning 2 processes for one script

Hi, I am having a shell script which has a while loop as shown below. while do sleep 60 done I am executing this script from Informatica ETL tool command task from where we can execute UNIX commands/scripts. When i do that, i am seeing 2 processes getting started for one script... (2 Replies)
Discussion started by: chekusi
2 Replies

6. Shell Programming and Scripting

script has been executed successfully or not??

Guys, How can we know whether a script has been executed successfully or not ? We dont have any log directories, and we are not given a chance to modify the script. Could someone help me out with this Thanks (2 Replies)
Discussion started by: bobby1015
2 Replies

7. AIX

Script not getting executed via cron but executes when executed manually.

Hi Script not getting executed via cron but executes successfully when executed manually. Please assist cbspsap01(appuser) /app/scripts > cat restart.sh #!/bin/ksh cd /app/bin date >>logfile.out echo "Restart has been started....." >>logfile.out date >>logfile.out initfnsw -y restart... (3 Replies)
Discussion started by: samsungsamsung
3 Replies

8. Shell Programming and Scripting

Variables of executed script available in executing script

Hi, I have a script get_DB_var.ksh which do a data base call and get some variables as below: sqlplus -silent $user/$pass@dbname <<END select col1, col2, col3 from table_name where col4=$1; exit; END Now I want to access all these variables i.e.... (9 Replies)
Discussion started by: dips_ag
9 Replies

9. UNIX for Advanced & Expert Users

Script working successfully only when executed twice

Guys, i am facing a very strange issue, my code below does an ftp to server A and gets a file to Server B, once the file is in B an if condition is present to check if the pattern of the filename is ABC* then it has to be encrypted using OPENSSL as ABC.enc else if it of pattern 123* has to be... (3 Replies)
Discussion started by: meva
3 Replies

10. Shell Programming and Scripting

How to know who executed a script?

Dear all I would like to capture who executed a script to a script's variable (i.e. testing.sh), so I can save it to a log file. testing.sh #! bin/ksh user=`<< code here >>` // get the info below in RED color <<main logic>> echo "$user execute testing.sh on `date`" >> testing.log ... (2 Replies)
Discussion started by: on9west
2 Replies
Login or Register to Ask a Question