如何在unix中输出stat命令的秒后删除多个零(0000000 +0000)
filetime=$(stat --format=%y fileName.txt)
echo $filetime
2016-01-27 15:03:26.000000000 +0000
答案 0 :(得分:1)
试试这个尺寸
filetime=$(stat --format=%y fileName.txt | sed 's/.000000000//')
echo $filetime
2016-01-27 15:03:26 +0000