菜鸟笔记
提升您的技术认知

shell日期时间和时间戳相互转化-ag真人游戏

先说一下为什么写这篇文章,因为目前没有一篇文章能让我在mac上成功执行的脚本。

date -d 在mac上提示以下错误:

date: option requires an argument -- d
usage: date [-jnru] [-d dst] [-r seconds] [-t west] [-v[ |-]val[ymwdhms]] ...
            [-f fmt date | [[[mm]dd]hh]mm[[cc]yy][.ss]] [ format]

以下时间戳都是以秒为单位

  • 自定义日期时间转时间戳
#/bin/sh
help="?"
if [ $# != 1 ] ; then
  echo "参数为空,输入的时间格式为:2022-01-16 15:26:11"
  exit 0
elif [[ $1 = "?" ]]; then
  echo "输入的时间格式为:2022-01-16 15:26:11"
  exit 0
fi
echo "北京时间:"$1
echo "时间戳:" $(date -j -f "%y-%m-%d %h:%m:%s" "$1"  %s)
  • 时间戳转日期
#/bin/sh
echo "北京时间:"$(date -r $1)
echo "时间戳:"$1
网站地图