
ruby
List of commands for ruby:
-
ruby:tldr:052bd ruby: Show the version of Ruby you are using.$ ruby -vtry on your machineexplain this command
-
ruby:tldr:42e18 ruby: Start a REPL (interactive shell).$ irbtry on your machineexplain this command
-
ruby:tldr:7242c ruby: Execute a Ruby script.$ ruby ${script-rb}try on your machineexplain this command
-
ruby:tldr:cb294 ruby: Execute a single Ruby command in the command-line.$ ruby -e ${command}try on your machineexplain this command
-
ruby:tldr:ef97f ruby: Check for syntax errors on a given Ruby script.$ ruby -c ${script-rb}try on your machineexplain this command