Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to understand the process state variables of special variables in Shell programming

2025-04-01 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article introduces the knowledge of "how to understand the process state variables of special variables in Shell programming". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

Process state variable

1. $$gets the process number (PID) of the current shell

2. $! The PID that executed the previous instruction

3. $? Gets the return value of the execution of the last command (0 for success, non-zero for failure, which is common)

4. $_ the last argument to a command or script executed before that

The code is as follows:

Cat > test$.sh

Echo'$$='$$

Echoing sounds and sounds!

Echo'$?='$?

Echo'$@='$@

Echo'$_='$_

# the output is as follows

Sh test\ $.sh 1 2 3

$= 2556

$! =

$? = 0

$@ = 1 2 3

The difference between $* and $@

$* treat all parameters as a single string, which is equivalent to "$1 $2 $3"

$@ treats each parameter as a single string, preserving any white space characters on the command line

The code is as follows:

Set--'I am'jane lee

Fori in$*; doecho$i; done

I

Am

Jane

Lee

Fori in$@; doecho$i; done

I

Am

Jane

Lee

Fori in "$@"; doecho$i; done

I am

Jane

Lee

Fori in "$*"; doecho$i; done

I am jane lee

This is the end of the content of "how to understand process state variables of special variables in Shell programming". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report