Difference between $var and ${var}


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Difference between $var and ${var}
# 1  
Old 09-22-2010
Lightbulb Difference between $var and ${var}

Hi
I want to know what is the difference between $var and ${var}. Smilie
I saw in few of the scripts examples.Somewhere people use $var and somewhere ${var}.
Is there any difference between two ? Smilie

Thanks
# 2  
Old 09-22-2010
In principle they are the same, but one should use ${var} if $var is immediately followed by an alphanumerical character or an underscore (_) . The curly brackets are also necessary if you want to refer to more than nine positional parameters, e.g. ${10)
This User Gave Thanks to Scrutinizer For This Post:
# 3  
Old 09-22-2010
${var} is usefull when you want to include the variable in some echo output (in shell, in perl it can be print), that needs to be followed immediately by some string. Here is an example:
This wont work:
Code:
echo "$varsomething"

But this will:
Code:
echo "${var}something"

So basically saying, {} are indicating borders of variable's name.
This User Gave Thanks to bartus11 For This Post:
# 4  
Old 09-22-2010
Thanks Scrutinizer and bartus11's for quick and informational reply.

Kudos Smilie
# 5  
Old 09-22-2010
They are generally interchangable, however the curly braces disambiguate the variable, so for example:
Code:
var="to the "
echo "Hello$varworld"
echo "Hello${var}world"

Would return two different responses from the two echo statements as the first would attempt to echo the contents of the variable "varworld" which doesnt exist and is therefore empty. The second echo will work as designed.

I hope this makes things clearer.
This User Gave Thanks to citaylor For This Post:
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Transfer the logs being thrown into /var/log/messages into another file example /var/log/volumelog

I have been searching and reading about syslog. I would like to know how to Transfer the logs being thrown into /var/log/messages into another file example /var/log/volumelog. tail -f /var/log/messages dblogger: msg_to_dbrow: no logtype using missing dblogger: msg_to_dbrow_str: val ==... (2 Replies)
Discussion started by: kenshinhimura
2 Replies

2. Shell Programming and Scripting

Csh , how to set var value into new var, in short string concatenation

i try to find way to make string concatenation in csh ( sorry this is what i have ) so i found out i can't do : set string_buff = "" foreach line("`cat $source_dir/$f`") $string_buff = string_buff $line end how can i do string concatenation? (1 Reply)
Discussion started by: umen
1 Replies

3. Solaris

/Var

Hi, Please suggest me how to clear the /Var if it exceeds threshold limit, and what factors need to be considered while clearing it. Thanks!! (2 Replies)
Discussion started by: Laxxi
2 Replies

4. Solaris

Difference between /var/log/syslog and /var/adm/messages

Hi, Is the contents in /var/log/syslog and /var/adm/messages are same?? Regards (3 Replies)
Discussion started by: vks47
3 Replies

5. Solaris

/var/adm & /var/sadm

what is the difference between tha /var/adm and /var/sadm files in solaris 10 Os please can any one respond quickly thanking you (2 Replies)
Discussion started by: wkbn86
2 Replies

6. Solaris

Lost /var/sadm/install/contents file and /var/sadm/pkg

Hello, I recently found that my /var/sadm/install/contents, ~/admin/default, /var/spool/patch and /var/spool/pkg files were empty. This broke the pkginfo, pkgchk and other package related tools. The pkgmap no longer points to where the applications have been installed. I have replaced the... (0 Replies)
Discussion started by: ronin42
0 Replies

7. UNIX for Advanced & Expert Users

/var/adm/messages vs /var/log/messages

The /var/adm/messages in Solaris seem to log more system messages/errors compared to /var/log/messages in Linux. I checked the log level in Linux and they seem OK. Is there any other log file that contains the messages or is it just that Linux doesn't log great many things? (2 Replies)
Discussion started by: gomes1333
2 Replies

8. Solaris

Difference between dmesg and /var/adm/messages?

Can anyone explain me the difference between difference between dmesg and /var/adm/messages in solaris. I tried to find out the difference but I didn't get much info on that. As per my knowledge both are used to check the logs.. (3 Replies)
Discussion started by: rogerben
3 Replies

9. Solaris

diff b/w /var/log/syslog and /var/adm/messages

hi sirs can u tell the difference between /var/log/syslogs and /var/adm/messages in my working place i am having two servers. in one servers messages file is empty and syslog file is going on increasing.. and in another servers message file is going on increasing but syslog file is... (2 Replies)
Discussion started by: tv.praveenkumar
2 Replies

10. Shell Programming and Scripting

Difference between "set $<var>" and "set -- $<var>"

Hi pros, Could anyone tell me the actual difference between setting the positional parameters from the variable using the following commands? $ var="This is my question" $ set $var $ echo $1 --> 'This' $ echo $2 --> 'is' .... .... and $ var="This is my question" $ set --... (3 Replies)
Discussion started by: royalibrahim
3 Replies
Login or Register to Ask a Question