Skip to content

Instantly share code, notes, and snippets.

View imfromthenet's full-sized avatar
💭
discipline == freedom

Paulius Olsevskas imfromthenet

💭
discipline == freedom
View GitHub Profile
@keriati
keriati / git-list-todos.sh
Created September 30, 2022 11:09
List todos in codebase and git blame
git grep -ino "// TODO" | cut -d":" -f1-2 | sed 's/:/ /g' | sed 's/\(.*\) \(.*\)/\2,\2 \1/g' | xargs -r -L 1 git blame -c -L > todo-lol.txt