Skip to content

Instantly share code, notes, and snippets.

@hasayvaz
Created March 1, 2011 16:12
Show Gist options
  • Save hasayvaz/849364 to your computer and use it in GitHub Desktop.
Save hasayvaz/849364 to your computer and use it in GitHub Desktop.
işletim sistemleri ilk hafta ödevi: notu 50'den büyük olanları gösterme
#!/usr/bin/awk -f
BEGIN {
}
{
key = $1
dict[key] = $2
}
END {
print "50'den büyük olanlar"
for (key in dict)
if (dict[key] > 50)
print key, ":", dict[key]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment