differentiate $@ and $*


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers differentiate $@ and $*
# 1  
Old 02-22-2012
differentiate $@ and $*

can anyone explain the difference between $* and $@?
Code:
pandeeswaran@ubuntu:~/training$ bash dollarstar 1 2 3 "4 5" 6
1
2
3
4
5
6
1
2
3
4
5
6
pandeeswaran@ubuntu:~/training$ cat dollarstar
#!/bin/bash

for i in $@
do
echo $i
done

for j in $*
do
echo $j
done
pandeeswaran@ubuntu:~/training$

thanks
# 2  
Old 02-22-2012
# 3  
Old 02-22-2012
Thanks. It seems there is a difference only if the arguments are single quoted .
In my case I have double quoted arguments and hence no difference.
# 4  
Old 02-22-2012
@pandeesh :

Remove the line :

Code:
#!/bin/bash

from your script, and give a try
This User Gave Thanks to ctsgnb For This Post:
# 5  
Old 02-22-2012
Yes it will create difference. I can explain more about this.
Before going to that I can tell some problem in your script. You are not supposed to use $* & $@ alone, it should be quoted ("$*", "$@"), else you will find unexpected behaviour.

$* - Here all of the positional parameters are seen as single word.
$@ - here each parameter in commandline is seen as separate words.

In your program the out put will differ. You can see this by giving double quote to $* and $@.

The below program will give you more explanation of giving Commandline parameter in quotes.

echo "$@"
shift
echo "$@"
shift
echo "$@"
shift
echo "$@"
shift
echo "$@"

Output::
./code.sh 1 2 3 "4 5" 6
1 2 3 4 5 6
2 3 4 5 6
3 4 5 6
4 5 6
6
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Differentiate 2 files name

Hello All, I have 2 Type of files. 1. MYTEST001_RKP_DORALDO_20150402120000.zip 2. CMP001_STD001_MOGANO_RPSL_20150409_C.zip I can receive these Two type of file at one location. If i receive second type of file CMP001_STD001_MOGANO_RPSL_20150409_C.zip I have to process without... (9 Replies)
Discussion started by: yadavricky
9 Replies

2. Shell Programming and Scripting

Compare and Differentiate Multiple Files

Im using code below comparing and getting the diff of two files. But what about multiple files? can you help me guys diff -u file1 file2|sed -n '/^---/!{/^-/s/-//p}' diff -ui file1 file2| sed -n '/^++/!{/^+/s/+//p}' Example File1: aaa bbb ccc ddd File2: bbb eee (5 Replies)
Discussion started by: kenshinhimura
5 Replies

3. Shell Programming and Scripting

how to differentiate file and directory name using ls command

how to differentiate file and directory name using ls command. l (3 Replies)
Discussion started by: jhon123
3 Replies

4. Shell Programming and Scripting

How to differentiate between two machine in Unix?

how to differentiate between two machine in Unix,whether it is logged in from local machine or from Server( both may be 2 or more). Please help. (5 Replies)
Discussion started by: kpatel97
5 Replies

5. Shell Programming and Scripting

differentiate between spaces and new-lines

Hi - Here's the problem I'm encountering......My script logs in to remote FTP through password-less "sftp" and must get the list of sub-directories under a given path. I know many of the unix commands don't work in "sftp" login so I cannot know which one is a "directory" and which one is a... (2 Replies)
Discussion started by: dips_ag
2 Replies

6. Shell Programming and Scripting

Differentiate the scripts

Can anyone decribe what would be differnce between the following scripts: #nohup /bin/sh ./job 2>& 1& # ./job > nohup.out & Thanks Alvida (1 Reply)
Discussion started by: alvida
1 Replies

7. Shell Programming and Scripting

How to differentiate two tar files

Hi All, I am new to this unix stuff.I just have one doubt:suppose i have two tar files and sometimes it happens that when we just check these files from outside these two tar files look same "Eg: ls -lrt drw-r--r-- 1 oasis logadmin 37067 Apr 3 05:48 file1.tar drw-r--r-- 1 oasis ... (7 Replies)
Discussion started by: siri_14
7 Replies

8. UNIX for Dummies Questions & Answers

Differentiate Soft and Hard Link

Hi, Can somebody please help me in knowing the difference between soft (Symbolic) link and hard link. Please explain it in as simple terms as possible. Kris (4 Replies)
Discussion started by: balu_solaris
4 Replies

9. UNIX for Dummies Questions & Answers

differentiate between a file and a device

sorry probably a beginner question but i was just wondering how unix does this as device are treated as files? (6 Replies)
Discussion started by: keith_hampson
6 Replies

10. UNIX for Dummies Questions & Answers

How to Differentiate Between Files and Folders?

Hi All, I'm a rookie using HPUX and I know this is going to sound like a bonehead question, but when I list the contents of a directory, how can I determine which objects are files and which are folders? I'm using the ll and ls commands to lists the contents. So far I've been determining the... (6 Replies)
Discussion started by: dgower2
6 Replies
Login or Register to Ask a Question