Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8498919
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T00:31:56+00:00 2026-06-11T00:31:56+00:00

In many SO questions and bash tutorials I see that I can access command

  • 0

In many SO questions and bash tutorials I see that I can access command line args in bash scripts in two ways:

$ ~ >cat testargs.sh 
#!/bin/bash

echo "you passed me" $*
echo "you passed me" $@

Which results in:

$ ~> bash testargs.sh arg1 arg2
you passed me arg1 arg2
you passed me arg1 arg2

What is the difference between $* and $@?
When should one use the former and when shall one use the latter?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T00:31:57+00:00Added an answer on June 11, 2026 at 12:31 am

    The difference appears when the special parameters are quoted. Let me illustrate the differences:

    $ set -- "arg  1" "arg  2" "arg  3"
    
    $ for word in $*; do echo "$word"; done
    arg
    1
    arg
    2
    arg
    3
    
    $ for word in $@; do echo "$word"; done
    arg
    1
    arg
    2
    arg
    3
    
    $ for word in "$*"; do echo "$word"; done
    arg  1 arg  2 arg  3
    
    $ for word in "$@"; do echo "$word"; done
    arg  1
    arg  2
    arg  3
    

    one further example on the importance of quoting: note there are 2 spaces between “arg” and the number, but if I fail to quote $word:

    $ for word in "$@"; do echo $word; done
    arg 1
    arg 2
    arg 3
    

    and in bash, "$@" is the “default” list to iterate over:

    $ for word; do echo "$word"; done
    arg  1
    arg  2
    arg  3
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

There are many questions like this but I can't find one that seems to
I found many questions concerning form elements that are null but I simply can‘t
I've seen many questions like this, but i can't seem to find the answer:
I see many questions and answers about using C# to generate PDF files. I
I have a question about unix command line. I have many files like these:
I've seen many questions about this, but i've never really got the answer that
Quick bash/terminal question - I work a lot on the command line, but have
Many questions here on SO ask about custom classes. I, on the other hand,
There were many questions about C++ template classes which contain static member variables, as
There's been many questions on styling on action bars, but the ones I've found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.