I am looking to export an array from my heroku console into a local CSV file.
In my current situation, I have a daily rake task which looks for tweets talking about my a
I tried using Tee as suggested and also got stuck at
Running `console` attached to terminal... up, run.4165
I ended up running an SSH shell to localhost and then piped it through tee.
$ ssh localhost | tee output.txt $ heroku run console
Might not be the best solution, but it worked for me.