Found this little gem that will save me hours of opening/closing text files.
using System;using System.Windows.Forms;class Clip{[STAThread]static void Main() {Clipboard.SetDataObject(Console.In.ReadToEnd(), true); }}
c:\>type filename | clipboard
Remember Me