Hacker News new | ask | show | jobs
by anonzzzies 1188 days ago
> also, the entire thing is literally 60 lines of python.

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
1 comments

Looks like it does this to me:

   for file in `git ls-files`; do echo $file; cat $file; echo; echo -------; done