Feed on
Posts
Comments

Archive for January 9th, 2009

其實還蠻簡單的,只是想紀錄一下,利用 awk 或者是 perl command line 找出非系統產生的帳號
perl:
#
# perl 寫法
#
perl -an -F: -e ‘if ($F[2] >= 1000) { print $F[0],"\n"; }’ passwd
…詳全文(共213字)

Read Full Post »