如何使用PowerShell将人类可读时间戳转换为Unix时间戳?

时间:2014-06-28 13:53:11

标签: unix powershell timestamp unix-timestamp

我有以下 csv 文件格式,其中包含一些工具信息和正常时间。

  

“工具”,“TimeRaised”“Abod”,“27-Jun-14 8:32:45 AM”“测试”,“27-Jun-14   8:30:42 AM“”分组“,”27-Jun-14 8:22:01 AM“”Tize“,”27-Jun-14 8:15:50   AM“”COrd“,”27-Jun-14 8:00:52 AM“

我希望使用PowerShell cmdlet将正常时间转换为 Unix 时间戳格式。但我不知道要使用哪个powershell cmdlet。

1 个答案:

答案 0 :(得分:2)

PS > Get-Date -date "27-Jun-14 8:00:52 AM" -UFormat %s
1403856052