shell
shell学习笔记
Lynn Gin
这个作者很懒,什么都没留下…
展开
-
Hive 服务管理脚本
【代码】Hive 服务管理脚本。原创 2023-08-29 10:53:28 · 483 阅读 · 0 评论 -
Linux 环境变量配置说明
不管是login shell还是non-login shell,启动时都会加载/etc/profile.d/*.sh中的环境变量。原创 2022-09-25 17:41:20 · 195 阅读 · 0 评论 -
linux 文本处理工具 cut 和 awk
文本处理工具 cut 和 awk原创 2022-08-06 17:59:32 · 880 阅读 · 0 评论 -
hdfs 及 yarn shell 操作
hdfs , yarn shell 命令原创 2022-07-28 10:06:07 · 291 阅读 · 0 评论 -
shell 流程控制
shell 流程控制if else fiif conditionthen command1 command2 ... commandN fiif conditionthen command1 command2 ... commandNelse commandfiif condition1then command1elif condition2 then command2else原创 2021-08-15 11:50:02 · 105 阅读 · 0 评论 -
shell参数传递, 运算符
参数传递[root@standalone shell20210815]# cat test.sh #!/bin/bashecho "shell传递参数实例";echo "文件名:$0";echo "第一个参数为:$0";echo "第二个参数为:$1";echo "参数个数:$#";[root@standalone shell20210815]# ./test.sh 1 2 3 4 5 6shell传递参数实例文件名:./test.sh第一个参数为:./test.sh第二个参数为:原创 2021-08-15 11:40:05 · 171 阅读 · 0 评论 -
shell 变量, 字符串, 数组, 注释
shell 变量定义变量变量名和等号之间不能有空格只能使用英文字母,数字和下划线,首个字符不能以数字开头中间不能有空格不能使用标点符号不能使用bash里的关键字(可用help命令查看保留关键字)name="zhangsan"使用变量[root@standalone ~]# name="张三"[root@standalone ~]# echo $name张三[root@standalone ~]# echo ${name}张三修改变量[root@standalone ~]原创 2021-08-15 10:16:52 · 95 阅读 · 0 评论