JIYIK CN >

Current Location:Home > Learning > OPERATING SYSTEM >

Passing all arguments in Bash

Author:JIYIK Last Updated:2025/03/21 Views:

In Bash scripts, we mainly use the syntax $1 $2 $3 ... $Nto pass variables in functions. Here N is a non-negative integer such as 1, 2, 3, ....

But there is a shortcut to accomplish the same task of passing all the arguments. This article will discuss how to pass all the arguments in a function.

Furthermore, we will see necessary examples and explanations to make the topic easier to understand.


Passing all arguments in Bash

To do this, we will use $@to pass all the parameters. Let's see the following sample code.

My_Friends () {
echo "Your friend's names are: "$@""
}

My_Friends Alen Walker John

In the above example, we have passed three arguments in the function named My_Friends. We use $@ to receive all the functions in the function.

Now, when you run the above example, you will get the output as shown below.

Your friend's names are: Alen Walker John

Now the traditional way to perform the same task is as follows.

My_Friends () {
echo "Your friend's names are: $1 $2 $3"
}

My_Friends Alen Walker John

In the above code, we have included all the parameters manually. This will also give the same output as the example we provided earlier.

请注意, if you have to handle all the parameters individually, you cannot include them manually. For example, if you want to perform an add operation with all the passed parameters like our example below, then you cannot use this shortcut.

Let's check the following example.

Add () {
echo The sum is: $(( $1+$2+$3 ))
}

Add 1 2 3

As we have discussed, you have to mention all the parameters individually in the recently shared example. The output of the above program will be as shown below.

The sum is: 6

All the codes used in this article are written in Bash. It will only work in Linux Shell environment.

For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.

Article URL:

Related Articles

Solve R command not found on Bash (or Cygwin)

Publish Date:2025/03/21 Views:102 Category:OPERATING SYSTEM

Commands may sometimes behave differently than you expect, even if it appears that you have done everything right, such as in the case of bash: '\r': command not found or similar error messages, for example syntax error near unexpected toke

How to fix the error Make Command Not Found in Cygwin

Publish Date:2025/03/21 Views:119 Category:OPERATING SYSTEM

Cygwin allows Windows users to access certain Linux features and includes a large number of GNU and open source tools that are commonly found in popular Linux distributions. When using Cygwin, it is easy to encounter a command not found err

Error handling in Bash

Publish Date:2025/03/21 Views:93 Category:OPERATING SYSTEM

This article introduces error handling in bash. Remember, understanding exit codes, options such as errexit and trap allow us to build robust scripts and manage bash problems more effectively. Exit Codes in Bash Handling errors based on exi

Getting the absolute path in Bash

Publish Date:2025/03/21 Views:60 Category:OPERATING SYSTEM

In this Bash article, we will learn different ways to get the absolute path in Linux. We will also learn some different Linux commands to get the absolute path of a file. Before we begin, we need to understand the basic concepts of absolute

Difference between Bash Nohup and &

Publish Date:2025/03/21 Views:151 Category:OPERATING SYSTEM

This short article introduces the nohup command and the control operator to run Linux processes in the background through Bash. In addition, we will further study the key differences between nohup and . Running Linux Processes in the Backgr

Renaming Files in Bash

Publish Date:2025/03/21 Views:89 Category:OPERATING SYSTEM

With the help of Bash scripts, you can automate your tasks. File renaming is a common task on various systems. You can rename all the files manually. However, if your file names have a sequence, it is better to automate this task. This way

Open Emacs in Bash

Publish Date:2025/03/21 Views:141 Category:OPERATING SYSTEM

This article will show you how to open Emacs from within Bash. We will also discuss how to install the Emacs text editor. Install EMACS in your system Suppose you don't have Emacs in your system. You can easily install it in your system wit

Clear the Terminal Screen in Bash

Publish Date:2025/03/21 Views:145 Category:OPERATING SYSTEM

There are various ways to clear the terminal in bash script. This article will discuss 3 methods to clear the terminal. Use tput reset to clear the terminal screen. The first method uses the keyword tput reset to clear the screen. When your

Reload .bash_profile from the command line

Publish Date:2025/03/21 Views:67 Category:OPERATING SYSTEM

In the shell, .bash_profile is used to customize the configuration of user settings. It is stored in the root directory or home directory and is mostly hidden from other users. This file holds all the configuration of the shell and is also

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Recommended

Tags

Scan the Code
Easier Access Tutorial