keeping track of users count
-
hi, i got a log file which contains many user who login on the different days at different time. A sample would be:
time mon tue wed thurs fri sat sun
0900 A B Q F K Z W
1000 D Y Q L S Q D
1100 E R G S Q Q W
1200 U E G S G F P
1300 H G D Q H G D
1400 W B E D X Z E
1500 Q H W F Z L B
1600 B H Q G S Z E
1700 D D L X E A H
1800 E W J Z L B F
1900 L M G A P C L
2000 O P F F G S Dhow do i find out the number of times each user login?
-
hi, i got a log file which contains many user who login on the different days at different time. A sample would be:
time mon tue wed thurs fri sat sun
0900 A B Q F K Z W
1000 D Y Q L S Q D
1100 E R G S Q Q W
1200 U E G S G F P
1300 H G D Q H G D
1400 W B E D X Z E
1500 Q H W F Z L B
1600 B H Q G S Z E
1700 D D L X E A H
1800 E W J Z L B F
1900 L M G A P C L
2000 O P F F G S Dhow do i find out the number of times each user login?
-
Read the file and count the entries by user name. You could use an array or a map template to build the counts. You can then sort the list and display the counts in whatever way you need.
Tks alot. i will be working with that idea.