script executing . ./.script.sh


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting script executing . ./.script.sh
# 1  
Old 09-19-2007
Question script executing . ./.script.sh

what is the difference between executing the script .script.sh and . ./script.sh.

Example : . ./.bash_profile


And also can any one tel me what do source command do?
# 2  
Old 09-19-2007
.script.sh

would try and find a program called ".script.sh" on the path and run them in a child process.

. script.sh

would basically interpret the script.sh commands inline

./script.sh

would try and find a program called "script.sh" in the current directory and run them in a child process.

source is an alias for .
# 3  
Old 09-19-2007
Question

So can i run . ./.bash_profile from any of the location? Or do I need to be in the same directory?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Executing Oracle script from UNIX Script

Hi, I am new to UNIX and want to execute oracle script from unix script. I have written below script but i am getting below error. #!/bin/bash file="/home/usr/control/control_file1" while read line do #$line=@$line #echo $line sqlplus tiger/scott@DB @$line exit #echo "$line" done... (3 Replies)
Discussion started by: vipin kumar rai
3 Replies

2. UNIX for Dummies Questions & Answers

Script dosent exits after executing the script

Hi i wrote a script which dosent exists after executing any help #!/bin/bash netstat -ptlen | grep 10000 if ; then echo "Hive Thrift server is running" exit 0 else echo "Hive Thrift server is down Trying to Bring up the service" | mail -s "ALERT" team@domain.com `nohup hive... (7 Replies)
Discussion started by: vikatakavi
7 Replies

3. Shell Programming and Scripting

SCRIPT NOT EXECUTING

HI All, The below shown script whcih is executing wrongly Actually i have three inputs from user FILE NAME :INPUTS CONFRIM FILE NAME :Y or N CONFIRM PATH :/ or . by depending on the user input the script have to execute the find command in the root path or in the home... (3 Replies)
Discussion started by: thelakbe
3 Replies

4. Shell Programming and Scripting

Use of ./ in executing a script.

Hi Guys, Hope you are doing well out there. Can you please let me know why do we use "./" to run a shell script? Is it to run the script in the current shell or something else? What if I have already defined a bang in the script say #!/bin/ksh and then running the script as... (2 Replies)
Discussion started by: singh.chandan18
2 Replies

5. 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

6. UNIX for Advanced & Expert Users

Executing a shell script from windows;script present in unix

I need to execute a shell script kept in unix machine from windows. User id, password area available. For eg. There's a shell script wich moves all the logs kept in my home directory to a directory named LOGS. Now i need to get this done through windows; either using a batch file, or java... (4 Replies)
Discussion started by: rajneesh_kapoor
4 Replies

7. Shell Programming and Scripting

script not executing

Hi , Kindly advice whats wrong with this script. It is not executing. ...# #!/bin/ksh find. -name "b.log" if ; then echo "1" fi ...# Thanks (5 Replies)
Discussion started by: himvat
5 Replies

8. Shell Programming and Scripting

when executing .sh script in telnet error "script not found"

Hi. i have written a wrapper script which inturn call the ftp child script in it. Now the problem is when i executing the same script in my script directory through putty it is getting executed successfully;where as through telnet i get an error "scripts not found" Can some one help me... ... (1 Reply)
Discussion started by: smiley
1 Replies

9. Shell Programming and Scripting

executing script

Hello ; I have a script myscript.sh. If I type at prompt myscript.sh I will receive ksh: myscript.sh: not found but if I type ./myscript.sh it works . What should I do to be able to run myscript just typing myscript.sh Many thanks before. (1 Reply)
Discussion started by: big123456
1 Replies

10. Shell Programming and Scripting

script not executing

test:/oracle/home $ ex_im1.sh ksh: exp_imp1.sh: not found $echo $SHELL /bin/ksh ex_im1.sh has rwxr--r-- permissions thanks (3 Replies)
Discussion started by: dreams5617
3 Replies
Login or Register to Ask a Question