书栈网 · BookStack 本次搜索耗时 0.022 秒,为您找到 2285 个相关结果.
  • 36.2 shell wrappers

    36.2 shell wrappers Example 36-1. shell wrapper Example 36-2. 稍微复杂一点的 shell wrapper Example 36-3. 一个通用的写日志文件的 shell wrapper Example 36-4. 关于awk脚本的 shell wrapper Example 36-5. 另...
  • 脱掉衬衫

    971 2020-12-15 《AWK 简明教程》
    脱掉衬衫 字符串匹配 统计 脱掉衬衫 字符串匹配 我们再来看几个字符串匹配的示例: $ awk '$6 ~ /FIN/ || NR==1 {print NR,$4,$5,$6}' OFS = "\t" netstat . txt 1 Local - Address Foreign - Address S...
  • 5. BEGIN和END语句块

    1565 2020-12-15 《精通 AWK》
    BEGIN和END语句块 BEGIN和END语句块 awk的所有代码(目前这么认为)都是写在语句块中的。 例如: awk '{print $0}' a . txt awk '{print $0}{print $0;print $0}' a . txt 每个语句块前面可以有pattern,所以格式为: pattern1 { st...
  • 脱掉内衣

    856 2020-12-15 《AWK 简明教程》
    脱掉内衣 awk脚本 环境变量 脱掉内衣 awk脚本 在上面我们可以看到一个END关键字。END的意思是“处理完所有的行的标识”,即然说到了END就有必要介绍一下BEGIN,这两个关键字意味着执行前和执行后的意思,语法如下: BEGIN{ 这里面放的是执行前的语句 } END {这里面放的是处理完所有的行后要执行的语句 } {这里面放的是...
  • InfluxDB Line Protocol

    InfluxDB Line Protocol Create Service Write Data Visualize Data InfluxDB Line Protocol Host metrics refer to the metrics collected from the operating system of the host where...
  • InfluxDB Line Protocol

    InfluxDB Line Protocol Create Service Write Data Visualize Data InfluxDB Line Protocol Host metrics refer to the metrics collected from the operating system of the host where...
  • 脱掉外套

    1028 2020-12-15 《AWK 简明教程》
    脱掉外套 过滤记录 内建变量 指定分隔符 脱掉外套 过滤记录 我们再来看看如何过滤记录(下面过滤条件为:第三列的值为0 && 第6列的值为LISTEN) $ awk '$3==0 && $6=="LISTEN" ' netstat . txt tcp 0 0 0.0 . 0.0 : 3306 ...
  • Hack 86. How to Debug a shell script

    Hack 86. How to Debug a shell script Shell script with no debug command: Output of Shell script with no debug command: Shell script with Debug command inside: Output of Shell sc...
  • InfluxDB Line Protocol

    InfluxDB Line Protocol Create Service Write Data Visualize Data InfluxDB Line Protocol Host metrics refer to the metrics collected from the operating system of the host where...
  • 常用的命令

    常用的命令 ps grep 排除grep自身 查找与target相邻的结果 awk sed 插入 替换 删除 xargs curl 常用的命令 sh脚本结合系统命令便有了强大的威力,在字符处理领域,有grep、awk、sed三剑客,grep负责找出特定的行,awk能将行拆分成多个字段,sed则可以实现更新插入删除等写操作。 ...