In Unix/Linux shell scripting, the special parameter $! stores the process ID (PID) of the most recently executed background command. This is useful for tracking or killing background jobs. $0 represents the script name, and $$ represents the PID of the current shell process.