For e.g., when I say ". .bashrc" on my linux command prompt, is there a corresponding binary/script that gets executed in place of the first dot? If the dot itself is a command, where is its location?

link|improve this question

67% accept rate
1  
I do not think the 'belongs-on-serverfault' tag is appropriate here. Shell scripting is a valid programming topic. – Sinan Ünür Jul 10 '09 at 5:15
Been asked and answered a couple of time already. Good luck finding the dups, though... – dmckee Jul 10 '09 at 17:15
Found one: stackoverflow.com/questions/922651/… – dmckee Jul 10 '09 at 17:15
Surprised why it didn't show up when I searched for it :-). Something for Jeff & team to chew on? Am not sure if I should edit the earlier question, or leave this one as is, so there's a greater chance of someone finding the question. – Harty Jul 15 '09 at 4:35
related: superuser.com/questions/176783/… – lesmana Dec 4 '11 at 18:35
feedback

3 Answers

up vote 7 down vote accepted

The . operator is shorthand for the source Bash builtin (as pointed out by John Kugelman below). Typing

help .

or

help source

at the Bash prompt will give you some information. For more on how source works, see http://www.ss64.com/bash/period.html.

link|improve this answer
1  
+1 Key is that it is a shell builtin, not a separate binary. You can type help at a bash prompt to see all of the other builtins. – John Kugelman Jul 10 '09 at 5:16
feedback

Additionally I want to point out that you don't "execute" anything with it (in terms of fork/exec), which is very important (and probably the only reason '.' exists).

link|improve this answer
2  
One key point - a consequence of the dot command not executing anything - is that if the dotted script sets variables, it sets them in the shell that dots the script, not in some sub-shell. – Jonathan Leffler Jul 10 '09 at 5:34
feedback

Also see this question on Server Fault.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.