我想要一個小腳本,每 2 秒對 8.8.8.8 執行一次 ping 操作,並且只輸出時間。它還應該在每個時間之間添加一個“#”。像這樣:
25.5
#
25.4
#
and so on...
最後我想將輸出保存在文字檔中。
答案1
ping -i2 8.8.8.8 | awk -W interactive -F'[ =]' '{print $10"\n#"}' > output.text
我想要一個小腳本,每 2 秒對 8.8.8.8 執行一次 ping 操作,並且只輸出時間。它還應該在每個時間之間添加一個“#”。像這樣:
25.5
#
25.4
#
and so on...
最後我想將輸出保存在文字檔中。
ping -i2 8.8.8.8 | awk -W interactive -F'[ =]' '{print $10"\n#"}' > output.text