mirror of
https://github.com/papers-we-love/papers-we-love.git
synced 2025-06-13 12:54:28 +00:00
3 lines
116 B
Bash
Executable File
3 lines
116 B
Bash
Executable File
#!/bin/sh
|
|
git log --name-status | \grep "^A\s" | grep -v README\.md | awk '{ print $2 }' | head > recently_added.md
|