Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know the command that works to do this, but I don't understand why. What is `...` doing in this context.

I know I can run:

heroku console
`gem list`

or

heroku console
`gem list`.split("\n")

to get a nice output, but I don't understand what these are doing. Why the ``?

share|improve this question

4 Answers

up vote 7 down vote accepted

heroku console is basically running an irb console on the remote computer, so you're in a ruby console when you do it. The backticks (`) are a standard way to run a system command in ruby.

share|improve this answer

The back ticks effectively making a system call and return the response that was written to stdout. Take a look at the Kernel ruby docs for more info.

share|improve this answer
so, in plain english this basically means it lets you step out of the rails environment you're running on the server and issue a command to the server system itself??? – Lee McAlilly Feb 3 '11 at 16:02
In plain English that's pretty much it, yes. – Steve Smith Feb 3 '11 at 16:47

In Ruby, you can run a system command either by using Kernel#exec or by placing the contents in backticks. This is the same as typing gem list on the command line and getting the result back as a string.

share|improve this answer
heroku run gem list

I've updated this in-case someone happens to come across heroku console as it's been disabled.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.