Created
March 1, 2011 19:23
-
-
Save semihozkoroglu/849710 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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