[20190502]給顯示輸出加入時間戳.txt

来源:https://www.cnblogs.com/lfree/archive/2019/05/05/10811114.html
-Advertisement-
Play Games

[20190502]給顯示輸出加入時間戳.txt--//有別人問我執行腳本中timestamp.pl的代碼,實際上有些文章裡面有源代碼,有一些忘記寫上了。--//貼上:$ cat /usr/local/bin/timestamp.pl#!/usr/bin/perlwhile (<>) {($sec, ...


[20190502]給顯示輸出加入時間戳.txt

--//有別人問我執行腳本中timestamp.pl的代碼,實際上有些文章裡面有源代碼,有一些忘記寫上了。
--//貼上:
$ cat /usr/local/bin/timestamp.pl
#!/usr/bin/perl
while (<>) {
($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime();
printf("%02d:%02d:%02d", $hour, $min, $sec);
print  ": $_";
#print localtime() . ": $_";
}

--//使用timestamp.pl在開始標註時間.這樣更加清晰.我好像改過,實際上這個很容易自己寫一個。

$ cat ts.sh
#! /bin/bash
while read i
do
    echo $(date '+%H:%M:%S') : $i
done

--//這是我臨時想到的腳本,看了鏈接:https://serverfault.com/questions/310098/how-to-add-a-timestamp-to-bash-script-log
--//真心佩服老外,人家還考慮執行效率.
gawk '{ print strftime("[%Y-%m-%d %H:%M:%S]"), $0 }'
while true; do printf '%(%F %T)T\n'; done

--//順便在我的筆記本上測試看看.我使用Cygwin64 Terminal for windows:
$  yes | gawk '{ print strftime("[%Y-%m-%d %H:%M:%S]"), $0 }' | uniq -c
 180224 [2019-05-03 20:23:53] y
 433126 [2019-05-03 20:23:54] y
 430354 [2019-05-03 20:23:55] y
 430532 [2019-05-03 20:23:56] y
 428690 [2019-05-03 20:23:57] y
 432775 [2019-05-03 20:23:58] y

$ yes |while read i; do printf '%(%F %T)T';echo " $i" ; done | uniq -c
   1406 2019-05-03 20:29:13 y
  12101 2019-05-03 20:29:14 y
  12080 2019-05-03 20:29:15 y
  12111 2019-05-03 20:29:16 y
  12048 2019-05-03 20:29:17 y
  12373 2019-05-03 20:29:18 y
  12350 2019-05-03 20:29:19 y

$ yes |while read i; do echo $(date '+%H:%M:%S') " $i"; done | uniq -c
      6 20:32:29  y
     33 20:32:30  y
     31 20:32:31  y
     30 20:32:32  y
     31 20:32:33  y
     33 20:32:34  y
     33 20:32:35  y
     33 20:32:36  y

$ yes | xargs -I{} date "+%H:%M:%S : {}" | uniq -c
     31 20:45:22 : y
     31 20:45:23 : y
     35 20:45:24 : y
     34 20:45:25 : y
     35 20:45:26 : y
     35 20:45:27 : y
     34 20:45:28 : y

--//實際上還有1個現成的ts命令(我沒有找到,不知道在那個rpm包裡面)以及perl腳本的情況.上班測試看看.

$ yes | timestamp.pl | uniq -c
 267209 08:56:02: y
 308591 08:56:03: y
 308820 08:56:04: y
 308579 08:56:05: y
 308996 08:56:06: y
 282290 08:56:07: y
 304223 08:56:08: y

$ yes | gawk '{ print strftime("[%Y-%m-%d %H:%M:%S]"), $0 }' | uniq -c
 190537 [2019-05-05 08:56:58] y
 516917 [2019-05-05 08:56:59] y
 518052 [2019-05-05 08:57:00] y
 517918 [2019-05-05 08:57:01] y
 518543 [2019-05-05 08:57:02] y
 517913 [2019-05-05 08:57:03] y

--//$ yes |while read i; do printf '%(%F %T)T';echo " $i" ; done | uniq -c在我的linux 5.9不支持.在rhel7 測試,顯示的時間是:
1970-01-01 08:00:00 y
1970-01-01 08:00:00 y
--//有問題.

$ yes |while read i; do echo $(date '+%H:%M:%S') " $i"; done | uniq -c
    210 09:00:26  y
    435 09:00:27  y
    433 09:00:28  y
    438 09:00:29  y
    439 09:00:30  y

$ yes | xargs -I{} date "+%H:%M:%S : {}" | uniq -c
    223 09:00:49 : y
    803 09:00:50 : y
    803 09:00:51 : y
    798 09:00:52 : y
   1018 09:00:53 : y
    814 09:00:54 : y
    812 09:00:55 : y

--//google還找到如下鏈接:
https://unix.stackexchange.com/questions/26728/prepending-a-timestamp-to-each-line-of-output-from-a-command

Firstly, if you are expecting these timestamps to actually represent an event, bear in mind that since many programs
perform line buffering (some more aggressively than others), it is important to think of this as close to the time that
the original line would have been printed rather than a timestamp of an action taking place.

You may also want to check that your command doesn't already have an inbuilt feature dedicated to doing this. As an
example, ping -D exists in some ping versions, and prints the time since the Unix epoch before each line. If your
command does not contain its own method, however, there are a few methods and tools that can be employed, amongst
others:

POSIX shell

Bear in mind that since many shells store their strings internally as cstrings, if the input contains the null character
(\0), it may cause the line to end prematurely.

command | while IFS= read -r line; do printf '[%s] %s\n' "$(date '+%Y-%m-%d %H:%M:%S')" "$line"; done

GNU awk

command | gawk '{ print strftime("[%Y-%m-%d %H:%M:%S]"), $0 }'

Perl

command | perl -pe 'use POSIX strftime; print strftime "[%Y-%m-%d %H:%M:%S] ", localtime'

Python

command | python -c 'import sys,time;sys.stdout.write("".join(( " ".join((time.strftime("[%Y-%m-%d %H:%M:%S]", time.localtime()), line)) for line in sys.stdin )))'

Ruby

command | ruby -pe 'print Time.now.strftime("[%Y-%m-%d %H:%M:%S] ")'

--//Python,ruby(沒安裝)沒有測試,其它測試如下:

$ yes | perl -pe 'use POSIX strftime; print strftime "[%Y-%m-%d %H:%M:%S] ", localtime'| uniq -c
  10259 [2019-05-05 09:02:30] y
 140363 [2019-05-05 09:02:31] y
 144397 [2019-05-05 09:02:32] y
 144285 [2019-05-05 09:02:33] y
 131107 [2019-05-05 09:02:34] y

$ yes | while IFS= read -r line; do printf '[%s] %s\n' "$(date '+%Y-%m-%d %H:%M:%S')" "$line"; done|uniq -c
     50 [2019-05-05 09:04:09] y
    410 [2019-05-05 09:04:10] y
    400 [2019-05-05 09:04:11] y
    400 [2019-05-05 09:04:12] y

--//從測試看awk腳本效率最高,使用這個腳本主要目的看某些步驟的執行時間間隔.例子:

$ ping -c 3 -i 2 192.168.100.40 | ts.awk
[2019-05-05 09:08:36] PING 192.168.100.40 (192.168.100.40) 56(84) bytes of data.
[2019-05-05 09:08:36] 64 bytes from 192.168.100.40: icmp_seq=1 ttl=64 time=0.855 ms
[2019-05-05 09:08:38] 64 bytes from 192.168.100.40: icmp_seq=2 ttl=64 time=0.094 ms
[2019-05-05 09:08:40] 64 bytes from 192.168.100.40: icmp_seq=3 ttl=64 time=0.165 ms
[2019-05-05 09:08:40]
[2019-05-05 09:08:40] --- 192.168.100.40 ping statistics ---
[2019-05-05 09:08:40] 3 packets transmitted, 3 received, 0% packet loss, time 4000ms
[2019-05-05 09:08:40] rtt min/avg/max/mdev = 0.094/0.371/0.855/0.343 ms

--//順便問一下,那位知道ts這個命令在那個rpm安裝包裡面.那位知道?遇到這樣的情況如何查詢確定安裝包.


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • .NET Standard支持一組新的API,System.Span, System.Memory,還有System.IO.Pipelines。這幾個新的API極大了提升了.NET程式的效能,將來.NET很多基礎API都會使用它們進行重寫。 Pipelines旨在解決.NET編寫Socket通信程式 ...
  • 視頻與PR:https://github.com/terrajobst/minsk/blob/master/docs/episode-01.md 作者是 Immo Landwerth(https://twitter.com/terrajobst),微軟 .NET 團隊的項目經理。 這一集主要內容是一 ...
  • 在實際開發中,模型往往被劃分為視圖模型和業務模型兩部分,視圖模型靠近視圖,業務模型靠近業務,但是在具體編碼上,它們之間並不是隔離的。 6.1 視圖模型和業務模型 模型大多數時候都是用來傳遞數據的。然而即使在傳遞數據這一點上,也可以看出,視圖需要的模型更加靈活一點,因為視圖變化性更大,而處理業務的模型 ...
  • v4.2.5更新內容:1.修複服務實例設置ClearSocketSession參數時,可能出現資源無法釋放而造成異常的情況。2.修複關閉宿主程式後進程仍然無法退出的問題。2.增加機器學習框架。3.優化核心代碼。下載地址:官方下載 7.增加機器學習演算法,通訊採集數據與演算法相結合 7.1概述 Serve ...
  • 輕簡級的ORM既要支持強類型編碼,又要有執行效率,還要通俗易懂給開發者友好提示,結合Expression可輕鬆定製自己所需要功能。 ...
  • 1、Chinese Language 簡體中文漢化插件,和我一樣英文不好的童鞋可以安裝這個插件進行漢化。這個插件重載之後還沒有漢化成功的話,把編輯器關閉重新打開就行了。 2、vscode icons 讓 vscode 資源樹目錄加上圖標,有利於我們進行文件格式的判斷。 3、HTML Snippets ...
  • 前言 在之前的博客中我介紹瞭如何實現生產現場的條碼列印,我們的生活中到處都是條碼,一維碼、二維碼隨處可見,更別說一家從事生產製造加工的工廠了,而條碼種類繁多、離線列印等情況就直接導致了條碼管控上的難度,甚至會出現較為嚴重的品質事件,上一個版本中我是通過Web應用程式調用 WinForm 中的函數進行 ...
  • 前言: 如果讓大家說出一款國內比較熱門的社交軟體,那無疑就是QQ和微信了,說到微信,無不例外的會想到微信公眾號和小程式,所以現在它們已經是很多企業流量及品牌推廣的主要途徑, 而作為一個開發者而言呢,如果想要開發打造一款屬於自己或企業的公眾號,就是需要對微信公眾號平臺API文檔的熟悉。 你可以花上半天 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...