System Grab Bag

View all TLDR pages from common (or from all pages)

rake

A Make-like program for Ruby. Tasks for rake are specified in a Rakefile. More information: https://ruby.github.io/rake.
  • Run the default Rakefile task:
    rake
  • Run a specific task:
    rake {{task}}
  • Execute n jobs at a time in parallel (number of CPU cores + 4 by default):
    rake --jobs {{n}}
  • Use a specific Rakefile:
    rake --rakefile {{path/to/Rakefile}}
  • Execute rake from another directory:
    rake --directory {{path/to/directory}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.