会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
古越剑箫
学习是一种习惯
::
首页
::
博问
::
闪存
::
新随笔
::
联系
:: ::
管理
::
公告
2020年8月26日
【shell】相互引用
摘要: shell 相互引用
阅读全文
posted @ 2020-08-26 15:52 古越剑箫
阅读(221)
评论(0)
推荐(0)
编辑
【shell】函数调用
摘要: 函数调用
阅读全文
posted @ 2020-08-26 15:47 古越剑箫
阅读(667)
评论(0)
推荐(0)
编辑
【shell】传递参数
摘要: shell传参
阅读全文
posted @ 2020-08-26 15:46 古越剑箫
阅读(346)
评论(0)
推荐(0)
编辑
【shell】流程控制语句
摘要: shell 流程控制语句
阅读全文
posted @ 2020-08-26 15:44 古越剑箫
阅读(186)
评论(0)
推荐(0)
编辑
【shell】test判断
摘要: shell test判断
阅读全文
posted @ 2020-08-26 15:43 古越剑箫
阅读(156)
评论(0)
推荐(0)
编辑
【shell】printf
摘要: shell printf
阅读全文
posted @ 2020-08-26 15:41 古越剑箫
阅读(128)
评论(0)
推荐(0)
编辑
【shell】数组
摘要: shell 数组
阅读全文
posted @ 2020-08-26 15:40 古越剑箫
阅读(109)
评论(0)
推荐(0)
编辑
【shell】运算符
摘要: shell运算符
阅读全文
posted @ 2020-08-26 15:37 古越剑箫
阅读(133)
评论(0)
推荐(0)
编辑
【shell】变量
摘要: #!/bin/bash # shell 变量 echo "Hello World !" user_name=张三 #输出变量名 echo ${user_name} ###字符串拼接 echo "你好,"${user_name}"" echo "你好,${user_name}" #提取字符串长度 echo ${#user_name} #截取字符串,索引从0开始 address="...
阅读全文
posted @ 2020-08-26 15:36 古越剑箫
阅读(109)
评论(0)
推荐(0)
编辑