美文网首页
Shell初学者常用技巧

Shell初学者常用技巧

作者: 夜半灯影 | 来源:发表于2019-06-04 17:48 被阅读0次

    获取年月日时分秒
    datename=(date +%Y%m%d%H%M%S) echodatename

    取多个文件中最新的那个
    lastfile=ls -t *.cpp | head -1
    echo $lastfile

    查看进程id
    ps aux|grep qfwx|grep -v 'grep'|awk '{print $2}'

    grep qfwx,按名称过滤

    grep -v 'grep',去掉grep自己

    awk 按空格拆分后打印第二个变量

    相关文章

      网友评论

          本文标题:Shell初学者常用技巧

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