• linux


    # 这里的例子每天作为循环,并展示当天的前一天
    #!/bin/bash
    
    startDate=20160201
    endDate=20160328
    startSec=`date -d "$startDate" "+%s"`
    endSec=`date -d "$endDate" "+%s"`
    for((i=$startSec;i<=$endSec;i+=86400))
    do
        current_day=`date -d "@$i" "+%Y%m%d"`
        one_day_ago=`date -d "$current_day yesterday" +%Y%m%d`
        echo "current_day:${current_day}, yesterday:${one_day_ago}"
    done
    

    停止指定程序

    $ps -ef | grep firefox | grep -v grep | cut -c 9-15 | xargs kill -s 9  

  • 相关阅读:
    union
    大端和小端
    迭代器
    STL
    动态内存管理2
    动态内存管理
    关于 FlexBox
    CSS的居中问题
    操作符
    JavaScript介绍
  • 原文地址:https://www.cnblogs.com/zhangyanhe/p/9212449.html
Copyright © 2020-2023  润新知