You are viewing a single comment's thread. Return to all comments →
#!/bin/bash awk '{ if ($2 >= 50 && $3 >= 50 && $4 >= 50) print $1 " : Pass"; else print $1 " : Fail" }'
'Awk' - 2
You are viewing a single comment's thread. Return to all comments →