Commands to run from shell script


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Commands to run from shell script
# 8  
Old 12-12-2012
In your script:-
Code:
#!/bin/bash

/absolute_path_here/isumid 98765432

# 9  
Old 12-12-2012
@bipinajith

you asked me to add absolute path inside shell script rite..how come it is working in commad prompt

Code:
scripr>isumid 98765432 " how come it is working here"


Last edited by Scrutinizer; 12-13-2012 at 04:52 AM.. Reason: code tags
# 10  
Old 12-12-2012
What is your OS & shell? Run below commands and post the results:-
Code:
uname

Code:
echo $SHELL

Also tell us if it worked after adding absolute path inside script.
# 11  
Old 12-13-2012
@bipinajith

find the below details and help me out
Code:
peplis00034:~/script> echo $SHELL
/bin/sh
peplis00034:~/script> uname
Linux

---------- Post updated at 02:43 PM ---------- Previous update was at 02:17 PM ----------

this is isumid path "
. /home/pckbatch/setenv.secspt"

don know how to use this in shell script


---------- Post updated at 04:52 PM ---------- Previous update was at 02:43 PM ----------

@bipinajith

leave this seems path is wrong

"this is isumid path "
. /home/pckbatch/setenv.secspt"

don know how to use this in shell script


isumid is present over here
Code:
peplis00034:/home/pckbatch> ls -ltr
total 116
-rw-rw-r-- 1 root     secadm  2617 2011-04-11 14:29 setenv.secadm
-r-xrwxr-- 1 root     secadm 64198 2011-04-15 11:53 zzuser.experimental
-rw-rw-r-- 1 root     secadm   631 2011-08-19 11:06 help.secspt
-rw-rw-r-- 1 01106488 secadm     0 2011-10-25 11:06 isumid
-rw-rw-r-- 1 root     secadm  2175 2011-10-25 11:06 setenv.secadmbck
-rw-rw-r-- 1 root     secadm   618 2011-10-25 11:06 help.secbse
-rw-rw-r-- 1 root     secadm   344 2011-10-25 11:06 help.secadm
-rwxrwxr-- 1 01106488 secadm   741 2011-10-25 11:06 cp_paas_feed.sh
drwxrwx--- 2 root     secadm  4096 2011-11-03 07:11 old
drwxrwxr-x 2 root     secadm  4096 2011-11-03 07:11 bin
-rw-rw-r-- 1 root     secadm  3902 2011-11-03 14:49 setenv.secbse
drwxrwx--- 2 01106488 secadm  4096 2011-11-04 12:26 log
-rw-rw-r-- 1 root     secadm  5101 2012-02-15 15:04 setenv.secspt
peplis00034:/home/pckbatch>


but it is 0 size

peplis00034:/home/pckbatch> echo $PATH

/home/09096754/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin

is this path of isumid if so how to add this into shell script

and one more thing i asked my colleague about "isumid" he said isumid itself a script. if so how to run a script from another script...


don know wat to do...i want to execute this isumid from another shell script..please suggest me and info is not required please let me know


---------- Post updated at 07:58 PM ---------- Previous update was at 04:52 PM ----------

@bipinajith

hi pls help me out on this...

Last edited by Scott; 12-13-2012 at 07:51 AM.. Reason: Please use code tags and do not cut and paste from rich-text editor's
# 12  
Old 12-13-2012
Try below options:-

1. Run which
Code:
which isumid

2. Run find
Code:
find . -name isumid -exec ls -l {} \;

3. Run alias
Code:
alias | grep isumid

4. If none of above options help you to locate the script, I suggest you to ask your colleague where it is located.
# 13  
Old 12-13-2012
Should not be in this shell forum, moved to "Dummies..."
# 14  
Old 12-14-2012
Not getting out from shell script

@ Vikram_Tanwar12


Code:
peplis00034:~/script> ./test.sh
+ ./test.sh
+ . /home/pckbatch/isumid 10084649
peplis00034:~/script>


comin like this

Last edited by Scott; 12-14-2012 at 07:29 AM.. Reason: Code tags
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Run Shell Commands after creating MYSQL Connection

Hi, I am trying to make a Shell Script using which I will update around 10K records in MySQL db each night. For that, I am currently doing the following command in FOR LOOP: mysql -D $MASTER_DB_NAME -h $MASTER_DB_HOST -u $MASTER_DB_USER -p$MASTER_DB_PASSWD -e "$SQL_Query" This command is... (2 Replies)
Discussion started by: rahulmittal87
2 Replies

2. Shell Programming and Scripting

shell script to run commands in different terminals

hi, how to write shell script that runs different commands(like:ls,ps,ls-l) in differnt terminals(each command should run in different terminal). my main motive is to run different 'c' program exe's available in different locations in different terminals. thanks sai (2 Replies)
Discussion started by: saidopdf
2 Replies

3. Shell Programming and Scripting

[bash] run a shell who runs commands

Hi all. On X11 I'm on a shell ...shell_1 (/bin/bash). From here I want to open another shell window shell_2 who executes commands like "ls -l" or programs like ". /program"... so the "result" of commands shows in shell_2 window and not in shell_1. Is that possible ? (4 Replies)
Discussion started by: jerold
4 Replies

4. Shell Programming and Scripting

Run Shell Commands via HTML on a client machine

Hi guys, so, I have a server running an sqlite database which is accessed by many client machines working as hardware testers, whenever something fails and needs to be replaced the operator would have to enter the Serial Number of the part being replaced as well as some other data. and... (0 Replies)
Discussion started by: sx3v1l_1n51de
0 Replies

5. Shell Programming and Scripting

Run multiple commands in $() without opening a new shell

The code below works, but takes too many lines and looks awkward: db2 "export to $filename of del select * from $table with ur"|tee -a $LOGFILE|awk '/Number of rows exported:/ {print $5}' > numrows.tmp numrows=$(cat numrows.tmp) rm numrows.tmp When I try the... (2 Replies)
Discussion started by: akar_naveen
2 Replies

6. Shell Programming and Scripting

Help with shell script to run the commands reading options from local file

I have to use shell script to run series of commands on another unix box by connecting through SSH and giving user credentials. For running commands on remote machine I have to use options reading from a local file. Process: Connecting to remote unix server <host1.ibm.com> through ssh Login: ... (2 Replies)
Discussion started by: itsprout
2 Replies

7. Shell Programming and Scripting

Run a shell script from one host which connext to remote host and run the commands

I want to write a script which would run from one host say A and connect to other remote host B and then run rest of commands in that host. I tried connecting from A host to B with SSH but after connecting to host B it just getting me inside Host B command prompt. Rest of the script is not running... (6 Replies)
Discussion started by: SN2009
6 Replies

8. Shell Programming and Scripting

shell script to run a few commands help!

Hi friends this is first post i am very new to shell scripting so i require your expertise to do the following thank u I need to write a shell script which will run the following commands pg_dump bank > backup(Enter) Wait for bash prompt to appear coz it indicates that the command is... (23 Replies)
Discussion started by: perk_bud
23 Replies

9. Shell Programming and Scripting

how can I write script that lets me run shell commands?

Hello I want to make simple extension to vi , you know how you want to run some shell command you do ":! ls -l " , then you go out the vi the command executed and then you hit enter and you back to vi but now I want to be able to go out of vi and run several command outside of vi .. and in... (3 Replies)
Discussion started by: umen
3 Replies

10. Shell Programming and Scripting

How to run unix commands in a new shell inside a shell script?

Hi , I am having one situation in which I need to run some simple unix commands after doing "chroot" command in a shell script. Which in turn creates a new shell. So scenario is that - I need to have one shell script which is ran as a part of crontab - in this shell script I need to do a... (2 Replies)
Discussion started by: hkapil
2 Replies
Login or Register to Ask a Question