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

What are the shell script functions?

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

Share

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

This article focuses on "what are the shell script functions", interested friends may wish to have a look. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn what are the shell script functions.

1 define function

Function fname () {

Statements; # inside the function

}

Or

Fname () {

Inside the statements;# function

}

2 call

$fname;# executes function

$fname arg1 arg2; # pass parameters

3 Parameter acquisition:

$1 first parameter $2 second parameter. Nth parameter of $n

$@ can represent "$1", "$2", "$3", etc., often representing parameters separated by spaces

$* can stand for "$1c$2c$3" where c is a character and treats all parameters as a single string, rarely applicable.

4 apply the function to the child shell: export-f fname

5 get the function return value: echo $?; # returns 0 indicates success. Non-zero is a failure.

6 date date command

Date-s "format date string"

Date "+% Y% B% d"; # print the corresponding format date: 2012 August 02

7 read read command

Read-n 2 var; # reads 2 characters and stores them in the var variable.

Read-s var; # does not echo what is read

Read-p "Engter input:" var; # displays prompt messages

Read-t 3 var; # reads for the variable var in 3 seconds.

Read-d ":" var # ends the input line with a delimiter.

At this point, I believe you have a deeper understanding of "what are the shell script functions?" you might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

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