[root@localhost ~]# echo $(seq 1 10) #取出1至10内的整数。 1 2 3 4 5 6 7 8 9 10 [root@localhost ~]# c=$(echo 5.12*2+0.876 |bc) #bc命令计算浮点数。 [root@localhost ~]# ...
分类:
编程语言 时间:
2020-01-16 21:53:12
阅读次数:
75
1.find 查找文件: 将目前目录及其子目录下所有延伸档名是 c 的文件列出来。 find . -name "*.c" 2.查找文件里的字符串等 grep "被查找的字符串" 文件名 3.vi/less中的搜索某各字符串,用/字符串或?字符串,按n表示下一个 sed \awk\grep区别: ht ...
分类:
系统相关 时间:
2020-01-15 11:34:57
阅读次数:
84
/etc/init.d/usbarbitrator stopchkconfig usbarbitrator off esxcli storage core device list |grep -i usb ls /dev/disks/ partedUtil delete /dev/disks naa ...
分类:
其他好文 时间:
2020-01-14 16:16:49
阅读次数:
393
chkconfig命令使用 自启动目录脚本应该放在/etc/init.d/ [root@localhost ~]$ chkconfig --list # 列出所有被chkconfig管理的服务 [root@localhost ~]$ chkconfig --add httpd # 添加指定的服务,让 ...
分类:
其他好文 时间:
2020-01-14 10:14:11
阅读次数:
93
转自:linux awk 命令详解 简介 awk是一个强大的文本分析工具,相对于grep的查找,sed的编辑,awk在其对数据分析并生成报告时,显得尤为强大。简单来说awk就是把文件逐行的读入,以空格为默认分隔符将每行切片,切开的部分再进行各种分析处理。 awk有3个不同版本: awk、nawk和g ...
分类:
系统相关 时间:
2020-01-13 16:37:16
阅读次数:
128
前提 AWK是一种处理文本文件的语言,是一个强大的文本分析工具。 本文将使用命令awk将具有某个关键字的段落提取出来。 准备数据 段落提取 假设我们需要的关键字为 nid=0x63ef ...
分类:
其他好文 时间:
2020-01-13 00:49:16
阅读次数:
371
k8s StatefulSet部署有状态服务,本文拿zookeeper 作为示例,其他服务中间件部署都可以采用类似的方式
分类:
其他好文 时间:
2020-01-10 18:52:27
阅读次数:
248
Linux下shell通用脚本启动jar(微服务) vim app_jar.sh #!/bin/bash #source /etc/profile # Auth:Liucx # Please change these parameters according to your real env. # ...
分类:
编程语言 时间:
2020-01-10 12:18:11
阅读次数:
79
awk:格式化文本输出 gawk - pattern scanning and processing language awk:gawk的符号链接 基本用法:gawk [options] 'program' FILE program:PATTERN {ACTION STATEMENTS} 语句之间用 ...
分类:
其他好文 时间:
2020-01-09 20:44:26
阅读次数:
76
1. awk 默认使用空格分隔, 可使用-F参数来指定分隔符 awk -F"xx" '{print $1}' file.txt # 指定xx来分隔, xx会被切掉, 不包含在任何一段中 2. awk语法简介 awk [options] 'commands' file.txt options: 参数选 ...
分类:
其他好文 时间:
2020-01-09 20:25:31
阅读次数:
89