Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

214,512

Downloads of v 0.9.0:

1,131

Last Update:

07 Aug 2018

Package Maintainer(s):

Software Author(s):

  • BurntSushi

Tags:

search ripgrep rg

ripgrep

This is not the latest version of ripgrep available.

  • 1
  • 2
  • 3

0.9.0 | Updated: 07 Aug 2018

Downloads:

214,512

Downloads of v 0.9.0:

1,131

Maintainer(s):

Software Author(s):

  • BurntSushi

Tags:

search ripgrep rg

ripgrep 0.9.0

This is not the latest version of ripgrep available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install ripgrep, run the following command from the command line or from PowerShell:

>

To upgrade ripgrep, run the following command from the command line or from PowerShell:

>

To uninstall ripgrep, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade ripgrep -y --source="'INTERNAL REPO URL'" --version="'0.9.0'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade ripgrep -y --source="'INTERNAL REPO URL'" --version="'0.9.0'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install ripgrep
  win_chocolatey:
    name: ripgrep
    version: '0.9.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'ripgrep' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '0.9.0'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller ripgrep
{
    Name     = "ripgrep"
    Version  = "0.9.0"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'ripgrep':
  ensure   => '0.9.0',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved as a trusted package on 07 Aug 2018.

Description

ripgrep is a command line search tool that combines the usability of The Silver Searcher (an ack clone)
with the raw speed of GNU grep. ripgrep has first class support on Windows, Mac and Linux, with binary
downloads available for every release.

## Notes

We are currently depending on Visual C++ Redistributable for Visual Studio 2015 https://chocolatey.org/packages/vcredist2015. This will change once this https://github.com/rust-lang/rust/pull/37545 is resolved and ripgrep can statically link the CRT.


tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop';

$version     = $env:chocolateyPackageVersion
$packageName = $env:chocolateyPackageName
$toolsDir    = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$url         = ("https://github.com/BurntSushi/ripgrep/releases/download/{0}/ripgrep-{0}-i686-pc-windows-msvc.zip" -f $version)
$url64       = ("https://github.com/BurntSushi/ripgrep/releases/download/{0}/ripgrep-{0}-x86_64-pc-windows-msvc.zip" -f $version)

$packageArgs = @{
    packageName    = $packageName
    unzipLocation  = $toolsDir
    fileType       = 'exe'
    url            = $url
    checksum       = "E47D4AB05F909150D1C96FE4EAB04409DA71319F"
    checksumType   = "sha1"
    url64bit       = $url64
    checksum64     = "E57A4D334FAFAA11A6A94875994F74E01F5FC782"
    checksumType64 = "sha1"
}

Install-ChocolateyZipPackage @packageArgs

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
ripgrep 14.0.3 10116 Friday, January 5, 2024 Approved
ripgrep 13.0.0.20220913 87632 Tuesday, September 13, 2022 Approved
ripgrep 13.0.0.20210621 28232 Monday, June 21, 2021 Approved
ripgrep 13.0.0 1368 Monday, June 14, 2021 Approved
ripgrep 12.1.1.20200727 13379 Monday, July 27, 2020 Approved
ripgrep 12.1.1 3256 Friday, May 29, 2020 Approved
ripgrep 12.1.0 1274 Friday, May 15, 2020 Approved
ripgrep 12.0.1 2864 Monday, March 30, 2020 Approved
ripgrep 11.0.2 6468 Friday, August 2, 2019 Approved
ripgrep 11.0.1 2586 Tuesday, April 16, 2019 Approved
ripgrep 0.10.0 3748 Monday, September 10, 2018 Approved
ripgrep 0.9.0 1131 Tuesday, August 7, 2018 Approved
ripgrep 0.8.1 2656 Wednesday, February 21, 2018 Approved
ripgrep 0.8.0 680 Monday, February 12, 2018 Approved
ripgrep 0.7.1 1797 Tuesday, October 24, 2017 Approved
ripgrep 0.6.0 1310 Friday, August 25, 2017 Approved
ripgrep 0.5.2 1313 Tuesday, May 23, 2017 Approved
ripgrep 0.5.1 741 Thursday, April 20, 2017 Approved
ripgrep 0.5.0 794 Tuesday, March 14, 2017 Approved
ripgrep 0.4.0 607 Tuesday, January 17, 2017 Approved
ripgrep 0.3.2 482 Thursday, December 8, 2016 Approved
ripgrep 0.3.1 481 Tuesday, November 22, 2016 Approved
ripgrep 0.3.0 390 Monday, November 21, 2016 Approved
ripgrep 0.2.9.1 422 Friday, November 18, 2016 Approved
ripgrep 0.2.9 422 Thursday, November 10, 2016 Approved
ripgrep 0.2.8 449 Monday, November 7, 2016 Approved
ripgrep 0.2.6 419 Thursday, November 3, 2016 Approved
ripgrep 0.2.5 425 Monday, October 31, 2016 Approved
ripgrep 0.2.1 501 Friday, September 30, 2016 Approved

This is a new minor version release of ripgrep that contains some minor new
features and a panoply of bug fixes.

Releases provided on Github for x86_64 will now work on all target CPUs, and
will also automatically take advantage of features found on modern CPUs (such
as AVX2) for additional optimizations.

This release increases the minimum supported Rust version from 1.20.0 to
1.23.0.

It is anticipated that the next release of ripgrep (0.10.0) will provide
multi-line search support and a JSON output format.

BREAKING CHANGES:

  • When --count and --only-matching are provided simultaneously, the
    behavior of ripgrep is as if the --count-matches flag was given. That is,
    the total number of matches is reported, where there may be multiple matches
    per line. Previously, the behavior of ripgrep was to report the total number
    of matching lines. (Note that this behavior diverges from the behavior of
    GNU grep.)
  • Octal syntax is no longer supported. ripgrep previously accepted expressions
    like \\1 as syntax for matching U+0001, but ripgrep will now report an
    error instead.
  • The --line-number-width flag has been removed. Its functionality was not
    carefully considered with all ripgrep output formats.
    See #795 for more
    details.

Feature enhancements:

  • Added or improved file type filtering for Android, Bazel, Fuschia, Haskell,
    Java and Puppet.
  • FEATURE #411:
    Add a --stats flag, which emits aggregate statistics after search results.
  • FEATURE #646:
    Add a --no-ignore-messages flag, which suppresses parse errors from reading
    .ignore and .gitignore files.
  • FEATURE #702:
    Support \\u{..} Unicode escape sequences.
  • FEATURE #812:
    Add -b/--byte-offset flag that shows the byte offset of each matching line.
  • FEATURE #814:
    Add --count-matches flag, which is like --count, but for each match.
  • FEATURE #880:
    Add a --no-column flag, which disables column numbers in the output.
  • FEATURE #898:
    Add support for lz4 when using the -z/--search-zip flag.
  • FEATURE #924:
    termcolor has moved to its own repository:
    https://github.com/BurntSushi/termcolor
  • FEATURE #934:
    Add a new flag, --no-ignore-global, that permits disabling global
    gitignores.
  • FEATURE #967:
    Rename --maxdepth to --max-depth for consistency. Keep --maxdepth for
    backwards compatibility.
  • FEATURE #978:
    Add a --pre option to filter inputs with an arbitrary program.
  • FEATURE fca9709d:
    Improve zsh completion.

Bug fixes:

  • BUG #135:
    Release portable binaries that conditionally use SSSE3, AVX2, etc., at
    runtime.
  • BUG #268:
    Print descriptive error message when trying to use look-around or
    backreferences.
  • BUG #395:
    Show comprehensible error messages for regexes like \\s*{.
  • BUG #526:
    Support backslash escapes in globs.
  • BUG #795:
    Fix problems with --line-number-width by removing it.
  • BUG #832:
    Clarify usage instructions for -f/--file flag.
  • BUG #835:
    Fix small performance regression while crawling very large directory trees.
  • BUG #851:
    Fix -S/--smart-case detection once and for all.
  • BUG #852:
    Be robust with respect to ENOMEM errors returned by mmap.
  • BUG #853:
    Upgrade grep crate to regex-syntax 0.6.0.
  • BUG #893:
    Improve support for git submodules.
  • BUG #900:
    When no patterns are given, ripgrep should never match anything.
  • BUG #907:
    ripgrep will now stop traversing after the first file when --quiet --files
    is used.
  • BUG #918:
    Don't skip tar archives when -z/--search-zip is used.
  • BUG #934:
    Don't respect gitignore files when searching outside git repositories.
  • BUG #948:
    Use exit code 2 to indicate error, and use exit code 1 to indicate no
    matches.
  • BUG #951:
    Add stdin example to ripgrep usage documentation.
  • BUG #955:
    Use buffered writing when not printing to a tty, which fixes a performance
    regression.
  • BUG #957:
    Improve the error message shown for --path separator / in some Windows
    shells.
  • BUG #964:
    Add a --no-fixed-strings flag to disable -F/--fixed-strings.
  • BUG #988:
    Fix a bug in the ignore crate that prevented the use of explicit ignore
    files after disabling all other ignore rules.
  • BUG #995:
    Respect $XDG_CONFIG_DIR/git/config for detecting core.excludesFile.
Discussion for the ripgrep Package

Ground Rules:

  • This discussion is only about ripgrep and the ripgrep package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or ripgrep, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus