当前位置:网站首页>Shell 函数
Shell 函数
2022-08-04 03:09:00 【Drw_Dcm】
目录
一、函数的定义
1.
function 函数名{
command
} 规范用法
2.
函数名() { 最常用,最简洁
comnand
}
函数定义完之后并不会自动执行,需要调用才行,好处在于可以写一段功能代码作为函数,有需要就直接调用
定义的时候出现语法错误也没关系,不调用就不会报错
函数返回值
return表示退出函数并返回一个退出值,脚本中可以用$?变量显示该值
使用原则
1.函数一结束就取返回值,因为$?变量只返回执行的最后一条命令的退出状态码
2.退出状态码必须是0~255, 超出时值将为取余256
二、函数的调用
直接在脚本里定义函数的代码块后写函数名即可完成调用
#!/bin/bash
function fun1 { 定义了一个函数叫做fun1
echo "this is a function!" 函数体的功能是打印"this is a function!
}
fun1 直接写函数名就会运行函数体内的代码
注意:1.函数名必须是唯一,如果先定义了一个,再用同样的名称定义,第二个会覆盖第一个的功能,出现意外的结果,所以这里一定要注意不要重名!
2.调用函数之前必须先进行定义!
边栏推荐
- Exclude_reserved_words 排除关键字
- 出现504怎么办?由于服务器更新导致的博客报504错误[详细记录]
- Innovation and Integration | Huaqiu Empowerment Helps OpenHarmony Ecological Hardware Development and Landing
- Asynchronous programming solution Generator generator function, iterator iterator, async/await, Promise
- ingress 待完善
- Functions, recursion and simple dom operations
- 【项目实现】Boost搜索引擎
- There are too many systems, how to realize multi-account interworking?
- 如果禁用了安全启动,GNOME 就会发出警告
- 2022.8.3-----leetcode.899
猜你喜欢
Rongyun "Audio and Video Architecture Practice" technical session [complete PPT included]
Pine Script | How to display and typeset a plot switch?
2千兆光+6千兆电导轨式网管型工业级以太网交换机支持X-Ring冗余环网一键环网交换机
Simple record of Flink principle flow chart
高效IO模型
C语言--环形缓存区
Brush esp8266-01 s firmware steps
6口全千兆二层网管型工业以太网交换机千兆2光4电光纤自愈ERPS环网交换机
base address: environment variable
SQL injection in #, - +, - % 20, % 23 is what mean?
随机推荐
The keytool command
Innovation and Integration | Huaqiu Empowerment Helps OpenHarmony Ecological Hardware Development and Landing
如果禁用了安全启动,GNOME 就会发出警告
为什么用Selenium做自动化测试
SSLHandshakeException: No appropriate protocol (protocol is disabled or cipher suites are inappropri
一文详解DHCP原理及配置
TOML configuration file format, YAML's top contender
基地址:环境变量
【医保科普】维护医保基金安全,我们可以这样做
基本表单验证流程
Returns the maximum number of palindromes in a string
Countdown to 2 days, the "New Infrastructure of Cultural Digital Strategy and Ecological Construction of Cultural Art Chain" will kick off soon
【指针内功修炼】深度剖析指针笔试题(三)
Pine脚本 | 如何显示和排版绘图开关?
View mysql deadlock syntax
力扣(LeetCode)215. 数组中的第K个最大元素(2022.08.03)
STM8S-----option byte
小程序+新零售,玩转行业新玩法!
In a more general sense, calculating the displacement distance and assumptions
[Playwright Test Tutorial] 5 minutes to get started