Hi,
I need help to get a script to extract the permanent hardware errors from the error log in AIX and then ignore ones that are more than 30 days old. I am redirecting errpt to a file called error_file and then doing awk -f test_script error_file. where test_script contains: #!/bin/ksh
$4 ~ /H/ { print $1, $2, $3, $4, $5, $6, $7, $8, $9, $10 }
so I get a summary of the hardware errors.But how can I get only ones newer than 30 days old? thanks in advance for help...