Reputation: 4738
I have a github repo and I want to take printouts of its code, now i can copy/paste the code a word document and then can take the print out but I was wondering, is there any easy and better way to do this ? as I have some 40 files
Upvotes: 0
Views: 1583
Reputation: 14099
First you would have to git clone
the repository from github to your local filesystem.
And then on a Linux (and maybe on a Mac) machine you can use lpr
command to print out files through the terminal.
Upvotes: 1