Which special shell variable represents the process ID of the currently running shell?

Choose the correct answer

Explanation

In shell scripting, $$ holds the process ID of the current shell. $! refers to the last background process ID, $0 is the script name, and $* contains all positional parameters.

Which special shell variable represents the process … — Basic of linux unix | PakQuizHub