Statement : find the no of authors
Solution :Find out the no of authors that have used the system since installation
cddir>/crx-quickstart/logscut-d" "-f 3 access.log |sort-u |wc-l
Find out the number of authors working on a given date:
grep "" access.log | cut -d " " -f 3 | sort -u | wc -l
No comments:
Post a Comment