Search Results

Search: Posts Made By: 1075FJ40
Forum: UNIX and Linux Applications 01-13-2011
6,425
Posted By methyl
Or: awk -F '/' '{print $2}' SystemOut.log |...
Or:
awk -F '/' '{print $2}' SystemOut.log | sort | uniq > /tmp/uniq_users.txt
Forum: UNIX and Linux Applications 01-13-2011
6,425
Posted By jim mcnamara
awk -F '/' ' /^Principal/ {arr[$NF]++; n} {next}...
awk -F '/' ' /^Principal/ {arr[$NF]++; n} {next} END{ for (i in arr) {print i}}' SystemOut.log


Try this.
Showing results 1 to 2 of 2

 
All times are GMT -4. The time now is 04:09 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy