I've searched and I can only find questions about the other way around: writing stdin to a file :)
Is there a quick and easy way to dump the contents of a file to stdout?
Sure. Assuming you have a string with the file's name called fname, the following does the trick.
fname
with open(fname, 'r') as fin: print(fin.read())
1.4m articles
1.4m replys
5 comments
57.0k users