Skip to content

Instantly share code, notes, and snippets.

@peterdalle
Last active February 27, 2017 23:00
Show Gist options
  • Save peterdalle/3287f2a594605fbdd308400df5d28c5c to your computer and use it in GitHub Desktop.
Save peterdalle/3287f2a594605fbdd308400df5d28c5c to your computer and use it in GitHub Desktop.
Hämta (och räkna) alla betyg jag gett studenter
#!/usr/bin/bash
find . -name 'Kommentarer.txt' -print0 | xargs -0 grep "Betyg: VG" | wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment