1 获取当前脚本所处目录路径 #!/bin/bash work_dir=$(cd $(dirname $0);pwd) echo $work_dir ...
分类:
系统相关 时间:
2021-07-28 21:18:02
阅读次数:
0
常见的错误范例 if 条件语句缺少结尾关键字 循环语句缺少关键字 成对符号落单,例如 [] () 等,一般建议是先写出符号,然后退格填写内容。 中括号两端没有空格 [$a -lt $b] 调试技巧 使用 dos2unix 命令处理再 Windows 下开发的脚本。 在一些关键的地方使用 echo 命 ...
分类:
系统相关 时间:
2021-06-22 18:35:49
阅读次数:
0
创建第一个启动shell脚本,如tomcat_restart.sh,内容 #/bin/sh tomcatmsg=$(ps -ef|grep tomcat|awk '{print $1$8}'|grep '/xxxx/xxx/xxxx/jdk/bin/java/'|wc -l) if [ $tomca ...
分类:
系统相关 时间:
2021-06-03 18:29:06
阅读次数:
0
参考: linux添加环境变量4种方法 (360doc6.net) Linux vi/vim | 菜鸟教程 (runoob.com) 基础 Linux的环境变量是保存在变量PATH中,可通过Linux shell命令 echo $PATH 查看输出内容,或者直接输入export查看。 Linux环境 ...
分类:
系统相关 时间:
2021-06-02 20:15:43
阅读次数:
0
最近有一个需求,shell终端输入^X切换到另一个登陆界面。 如何判断输入的是^加上其他字母成为要解决的问题。 查了一堆资料,发现可以这样判断: #!/bin/sh echo Please input ^X: read a echo $a if [ $a = $'\030' ];then echo ...
分类:
系统相关 时间:
2021-06-02 14:05:04
阅读次数:
0
查空行 awk '/^$/{print NR}' demo1.txt 求某一列的和 awk '{sum+=$2} END {print "求和:"sum}' demo2.txt 数字排序 sort -n -t ' ' -k 2 demo3.txt sort -t ' ' -k 2nr demo3.t ...
分类:
系统相关 时间:
2021-06-02 11:35:11
阅读次数:
0
1.变量以固定名称存放的可能变化的值,可以提高脚本的适应能力,方便脚本执行中重复使用某个值。定义/赋值变量格式为:变量名=变量值注意事项:若指定变量已存在,则相当于重新给变量赋值;等号两边无空格;变量名区分大小写;变量名不能以数字开头,不使用关键字和特殊字符。 [root@localhost ~]# ...
分类:
系统相关 时间:
2021-05-24 15:50:27
阅读次数:
0
1.免交互处理 在免交互输出处理中可以使用重定向将输出内容输入到黑洞文件/dev/null中。 [root@localhost ~]# echo password | passwd --stdin user &> /dev/null 2.I/O交互标准输入:从此设备接收用户输入数据标准输出:通过此设 ...
分类:
系统相关 时间:
2021-05-24 08:35:13
阅读次数:
0
1、测试1 [root@centos7 test2]# i=0 [root@centos7 test2]# max=5 [root@centos7 test2]# while((i<max));do echo $i;((i++));done 0 1 2 3 4 ...
分类:
系统相关 时间:
2021-04-23 12:03:54
阅读次数:
0
1、测试1 [root@centos7 test2]# ls a.txt [root@centos7 test2]# if [ -e a.txt ]; then echo "exist";else echo "no nxist"; fi exist [root@centos7 test2]# if ...
分类:
系统相关 时间:
2021-04-23 11:53:02
阅读次数:
0