我用last | grep pts/
檢查誰登錄我的樹莓派:如何在shell腳本中提取部分字符串?
samuelli pts/2 localhost Fri Apr 24 19:51 still logged in
pi pts/1 localhost Fri Apr 24 19:50 - 19:53 (00:03)
liuly pts/1 localhost Fri Apr 24 19:50 - 19:50 (00:00)
現在我想的用戶名像pi
和他們的登錄時間像Fri Apr 24 19:51
和輸出的用戶名和時間提取到一個文件中。我怎麼能寫這個腳本?使用cut
?
你嘗試過這麼遠嗎? 'cut'的問題是它不能很好地處理可變數量的空格。取而代之的是'awk'。 – dg99