Last active
February 27, 2017 23:00
-
-
Save peterdalle/3287f2a594605fbdd308400df5d28c5c to your computer and use it in GitHub Desktop.
Hämta (och räkna) alla betyg jag gett studenter
This file contains hidden or 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
| #!/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