ChamplainTechJournals/automation-sys320/week10/lecture.bash
2025-04-19 23:42:08 -04:00

14 lines
223 B
Bash

#!/bin/bash
file="/var/log/apache2/access.log"
results=$(cat $file | cut -d' ' -f1,7 | tr -d "[")
function pageCount(){
counts=$(awk '{print $7}' $file | sort | uniq -c)
}
pageCount
echo "$counts"
#echo "$results"