If you are wondering what $$ (double-dollar) is in a bash shell script, well it is a special variable that can be used to know the Process ID or PID of the current shell.
Let's try running this on a bash shell.
bash_script.sh#!/bin/bash
echo "The process ID of the current shell is: $$"
Result:
./bash_script.sh
The process ID of the current shell is: 4181
List of Special Variable that starts with $ and their meaning
Character | Description |
---|---|
$ | Variable expansion |
$! | Process ID of the most recent background command |
$$ | Process ID of the current shell |
$? | Exit status of the most recently executed command |
$# | Number of command-line arguments passed to the script |
$* | All command-line arguments as a single string (positional parameters) |
$@ | All command-line arguments as separate strings (positional parameters) |
$0 | Name of the script itself (or the shell) |
$1 , $2 , $3 , ... | Individual command-line arguments (positional parameters) |

-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Bash,
- How to use Autocomplete and Autosuggestion in Shell Commands
- Bash How to Save Output of a Command to a Variable
- How to know the current shell you are logged in?
- How to Echo Bash Command to a File
- Bash Command to Get Absolute Path for a File
- How to Split a String based on Delimiter in Bash Scripting
- Bash: Command Line Arguments to Bash Script Examples
- Bash Command to Download a File From URL
- How to check if a Command Exists using Bash Script
- Ways to Increment a counter variable in Bash Script
- Know Bash shell version command
- Bash command to Read, Output and Manipulate JSON File
- Bash Command to Base64 Decode a String
- Bash Command to Check Python Version
- Bash: Command to Find the Length of a String
- What is $$ in Bash Shell Script- Special Variable
- Bash - How to check if a Command Failed?
- List all Username and User ID using Bash Command
- Command to Sort File In Reverse Order [Unix/Linux/macOS]
- bash: netstat: command not found
- Bash Command To Go Back To Previous Directory
- [Fix] bash: script.sh: /bin/bash^M: bad interpreter: No such file or directory
- How to check your IP using bash for Windows?
- Bash Command To Check If File Exists
- Convert String from uppercase to lowercase in Bash
More Posts:
- Find and Replace Multiple different words with the same word in a text file - NotepadPlusPlus
- [Fix] Spring Boot: java.sql.SQLSyntaxErrorException: Unknown database - Java
- How to connect to SSH port other than default 22 - Linux
- 25 Notepad++ Command Argument List - NotepadPlusPlus
- How to Clear All Cells Output in Jupyter Notebook - Python
- How to Set Up Dual Monitors on a Windows 11 PC - Windows-11
- [Notepad++] Remove CR Carriage Return and LF Line feed (CRLF) - NotepadPlusPlus
- Trace using cURL Command Example - cURL