vote up 1 vote down star
1

What is the meaning for $! in shell or shell scripting? I am trying to understand a script which has the something like the following.

local@usr> a=1
local@usr> echo $a
1
local@usr> echo $!a
a

It is printing the variable back. Is it all for that? What are the other $x options we have? Few I know are $$, $*, $?. If anyone can point me to a good source, it will be helpful. BTW, This is in Sun OS 5.8, KSH.

flag

4 Answers

vote up 3 vote down check

The various $… variables are described in Bash manual. According to the manual $! expands to the PID of the last process launched in background. See:

$ echo "Foo"
Foo
$ echo $!

$ true&
[1] 67064
$ echo $!
67064
[1]+  Done                    true

In ksh it seems to do the same.

link|flag
+1. Nice. I would like to see an example please. – Guru Nov 4 at 10:41
What does that mean? I tried and I could not understand what is it? usr> echo $! 17893 usr> false usr> echo $! 17893 – Guru Nov 4 at 10:46
1  
Guru, try this: sleep 120 & ; echo $1 ; ps -ef | grep $! – paxdiablo Nov 4 at 10:48
It's the PID of the last *background job - it won't change until you run a background job. – paxdiablo Nov 4 at 10:49
@paxdiablo. Great. Now, I am understanding. – Guru Nov 4 at 10:52
vote up 1 vote down

! is a reference operator in unix, though it is not called with that name.

It always refers to a mother process. Try typing :! in vi, it takes you to command prompt and you can execute commands as usual until exit command.

! in SQLPLUS also executes the command from the command prompt. try this in sqlplus

SQL> !ls --- this gives the list of files inthe current dir.

$! - obviously gives the process id of the current/latest process.

link|flag
+1. Good explanation. Thanks for the comparision. – Guru Dec 13 at 17:46
vote up 0 vote down

It gives the Process id of last backgroundjob or background function Please go through this link below

http://www.well.ox.ac.uk/~johnb/comp/unix/ksh.html#specvar
link|flag
vote up 2 vote down

From the ksh man page on my system:

  ${!vname}
      Expands  to the name of the variable referred to by vname.  This
      will be vname except when vname is a name reference.
link|flag
+1. Thanks. What are the other options available? – Guru Nov 4 at 10:39
An example perhaps? Expands confuses me. :( – Guru Nov 4 at 10:40
man ksh will tell you, there are too many to copy into an answer here. – Greg Hewgill Nov 4 at 10:40
1  
This form is referred to as indirection. a=1; b=a; echo ${!b} results in "1" being printed. – Dennis Williamson Nov 4 at 11:37

Your Answer

Get an OpenID
or

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