Skip to content

Instantly share code, notes, and snippets.

@semihozkoroglu
Created March 1, 2011 19:23
Show Gist options
  • Save semihozkoroglu/849710 to your computer and use it in GitHub Desktop.
Save semihozkoroglu/849710 to your computer and use it in GitHub Desktop.
#!/bin/sh
awk '
BEGIN {
FS="\t"
}
{
if ( $6 > 50 ){
print "Dsn notu 50 den yuksek kisiler: "$2""
}
vizetop=vizetop+$4
finaltop=finaltop+$5
}
END {
print "vize ortalaması: "vizetop/(NR-1)" "
print "Final ortalaması: "finaltop/(NR-1)" "
} ' ./notlar.csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment