美文网首页
Awk Command Daily Work Summary

Awk Command Daily Work Summary

作者: 海胆阶段 | 来源:发表于2019-03-01 14:47 被阅读0次

This article used to walk you through some commonly awk usages , based on a real life scenario.

################################################################
#   Date           Description
#   02/28/2019     print last column
#   02/26/2019     awk remote execution
#
################################################################

02/26/2019

When use awk in script, may suffer shell unexpected expanding:

ssh -o StrictHostKeyChecking=no sshrm1 "ifconfig eth0 | grep \"inet\" | awk '{print $2}'"

Above will not get right data, instead preceding \ before $

ssh -o StrictHostKeyChecking=no sshrm1 "ifconfig eth0 | grep \"inet\" | awk '{print \$2}'"

Another method is awk the return value from ssh rather than wrap it in ssh command.

02/28/2019

Print last column separated by space

awk '{print $NF}'

相关文章

  • Awk Command Daily Work Summary

    This article used to walk you through some commonly awk u...

  • Tar Command Daily Work Summary

    This article used to walk you through some commonly tar u...

  • Ssh and Scp Daily Work Summary

    This article used to walk you through some commonly ssh a...

  • Yum and Rpm Daily Work Summary

    This article used to walk you through some commonly yum a...

  • Work Summary

    在做业务逻辑的API层对参数做严格校验避免在Service层、DAO层出现由于参数错误而引起的错误。——2016-...

  • Daily summary

    1 hour BGT watching 2 hours reading 2 hours teaching plan

  • Work Daily

    每个项目开始之前都要写一个大概的任务列表。确定每个模块,每个功能花费的时间。 每天下班之前到redmine登记工时...

  • Daily work

    ![](file:///C:\Users\v_czjzhang\AppData\Roaming\Tencent\U...

  • daily work

    上午: 回复询盘,消息 挑选照片,拍摄新照片 整理客户资料 发微信状态 下午: 更新动态。 WhatsApp, F...

  • What I received in 2017

    summary of the past year Work In 2017, I achieved one of ...

网友评论

      本文标题:Awk Command Daily Work Summary

      本文链接:https://www.haomeiwen.com/subject/vnsduqtx.html