difference between echo and ""


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting difference between echo and ""
# 1  
Old 03-20-2009
difference between echo and ""

hi guys
wht is the difference between these two command in bash shell scripting
$var1=world!
$echo hello $var1
$echo "hello $var1"
# 2  
Old 03-20-2009
Code:
$ var1='World!'
$ echo Hello $var1
Hello World!
$ echo Hello  $var1
Hello World!
$ echo "Hello $var1"
Hello World!
$ echo "Hello  $var1"
Hello  World!
$

The quotes tell the shell to interpret Hello and the substitution of var1 as one parameter (including the space(s)), instead of two parameters.
# 3  
Old 03-20-2009
difference between echo and ""

thanks for reply
i am little bit confused...
can u tell me clearly.....
plzzzzz
# 4  
Old 03-20-2009
The shell uses the space character ' ' as seperator for arguments passed to commands.
The line
Code:
echo Hello World

is parsed by the shell like this:
  • Command: echo
  • First argument: Hello
  • Second argument: World
The line
Code:
echo "Hello World"

is parsed by the shell like this:
  • Command: echo
  • First argument: Hello World
# 5  
Old 03-20-2009
difference between echo and ""

vow great...
now i understood ....very clearly
thank you ...thank you very much....
# 6  
Old 03-20-2009
In addition to what has been already posted, the version in quotes will preserve multiple space characters.
Try with say three spaces between "hello" and "world":

Code:
echo "hello   world"
hello   world


echo hello   world
hello world

# 7  
Old 03-20-2009
Quote:
Originally Posted by pludi
The shell uses the space character ' ' as seperator for arguments passed to commands.
The line
Code:
echo Hello World

is parsed by the shell like this:
  • Command: echo
  • First argument: Hello
  • Second argument: World
The line
Code:
echo "Hello World"

is parsed by the shell like this:
  • Command: echo
  • First argument: Hello World
Actually both " " and ' ' turns off the special meanings of the meta characters, except that " " doesn't do that for \ $ ' and ".

But from the number of arguments interpretation point of view, at least in KornShell they function the same way.

Code:
#!/bin/ksh

VALUE1="hello world"
VALUE2='hello world'

for ITERATOR in $VALUE1
do
    print "$ITERATOR"
done

for ITERATOR in $VALUE2
do
    print "$ITERATOR"
done

Both of them will print
Code:
hello
world

In each loop there is two arguments (two values for $ITERATOR)
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Mindboggling difference between using "tee" and "/usr/bin/tee" in bash

I'm on Ubuntu 14.04 and I manually updated my coreutils so that "tee" is now on version 8.27 I was running a script using bash where there is some write to pipe error at some point causing the tee command to exit abruptly while the script continues to run. The newer version of tee seems to prevent... (2 Replies)
Discussion started by: stompadon
2 Replies

2. UNIX for Dummies Questions & Answers

Difference between echo `ls -l` and echo "`ls -l`" ?

Hi guys, Been messing around with shell programming for a couple of days and I found something that was pretty odd in the behavior of the echo command. Below is an example-: When I type the following in my /home directory from my lxterminal in Debian-: echo "`ls -l`" I get the... (2 Replies)
Discussion started by: sreyan32
2 Replies

3. Shell Programming and Scripting

tcsh - understanding difference between "echo string" and "echo string > /dev/stdout"

I came across and unexpected behavior with redirections in tcsh. I know, csh is not best for redirections, but I'd like to understand what is happening here. I have following script (called out_to_streams.csh): #!/bin/tcsh -f echo Redirected to STDOUT > /dev/stdout echo Redirected to... (2 Replies)
Discussion started by: marcink
2 Replies

4. Shell Programming and Scripting

Question about the difference between "for" and "while" loop

dear all, i got some questions about for/while loop when working on redirect command output to for/while loop. take one for example : in for loop : allfiles=`find /var/log -maxdepth 1 -type f -mtime +5` index=1 for ((i=0; i<${#allfiles}; i++)); do echo "$index:${allfiles}" ... (2 Replies)
Discussion started by: tiger2000
2 Replies

5. AIX

echo $varibla | mail -s "subject" "xxx@xxx.com" not ruuning as expected

Hi Folks, As per the subject, the following command is not working as expected. echo $variable | mail -s "subject" "xxx@xxx.com" Could anyone figure it out whats wrong with this. I am using AIX box. Regards, (2 Replies)
Discussion started by: gjarms
2 Replies

6. UNIX for Dummies Questions & Answers

awk - difference between -F"," and BEGIN{FS=","}

in awk, what is the difference between: -F"," and BEGIN{FS=","} (2 Replies)
Discussion started by: locoroco
2 Replies

7. Shell Programming and Scripting

awk command to replace ";" with "|" and ""|" at diferent places in line of file

Hi, I have line in input file as below: 3G_CENTRAL;INDONESIA_(M)_TELKOMSEL;SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL My expected output for line in the file must be : "1-Radon1-cMOC_deg"|"LDIndex"|"3G_CENTRAL|INDONESIA_(M)_TELKOMSEL"|LAST|"SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL" Can someone... (7 Replies)
Discussion started by: shis100
7 Replies

8. Solaris

difference between "root" and "usr" packages

Hi, could someone pls enlighten me on the difference between the "root" package and "usr" package? Like in this example: pkginfo -l SUNWGtku | grep -i desc DESC: GTK - The GIMP Toolkit (Usr) and pkginfo -l SUNWGtkr | grep -i desc DESC: GTK - The GIMP Toolkit (Root)... (6 Replies)
Discussion started by: masloff
6 Replies

9. Shell Programming and Scripting

Difference between using "echo" builtin and /bin/echo

So in my shell i execute: { while true; do echo string; sleep 1; done } | read line This waits one second and returns. But { while true; do /bin/echo string; sleep 1; done } | read line continues to run, and doesn't stop until i kill it explicitly. I have tried this in bash as well as zsh,... (2 Replies)
Discussion started by: ulidtko
2 Replies

10. Shell Programming and Scripting

"sed" to check file size & echo " " to destination file

Hi, I've modified the syslogd source to include a thread that will keep track of a timer(or a timer thread). My intention is to check the file size of /var/log/messages in every one minute & if the size is more than 128KB, do a echo " " > /var/log/messages, so that the file size will be set... (7 Replies)
Discussion started by: jockey007
7 Replies
Login or Register to Ask a Question