I am trying to identify the Apache2 version to scope systems that need
an update, but I am experiencing some unexpected results. My EA script:
#!/bin/sh result=`httpd -v | grep "Unix" | awk '{print $3}' | cut -f2
-d"/"` echo "$result" When I run as r...