also, the entire thing is literally 60 lines of python. sometimes i don't get what gets upvoted on HN anymore
Which is a lot as you can do this in one line of bash. And have in the past for other reasons.
Something like;
find . -name "*.py" -exec cat {} + > output.txt
for file in `git ls-files`; do echo $file; cat $file; echo; echo -------; done
Which is a lot as you can do this in one line of bash. And have in the past for other reasons.
Something like;