/** * **grep** - pkgx package * * @domain `gnu.org/grep` * @programs `grep` * @version `3.12.0` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install gnu.org/grep` * @dependencies `pcre.org/v2` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnuorggrep * console.log(pkg.name) // "grep" * console.log(pkg.programs) // ["grep"] * console.log(pkg.versions[0]) // "3.12.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnu-org/grep.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gnuorggrepPackage: { /** * The display name of this package. */ name: 'grep'; /** * The canonical domain name for this package. */ domain: 'gnu.org/grep'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/grep/package.yml'; homepageUrl: ''; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gnu.org/grep'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnu.org/grep -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gnu.org/grep'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['grep']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['pcre.org/v2']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.12.0', '3.11.0', '3.8.0']; aliases: readonly [] }; export type GnuorggrepPackage = typeof gnuorggrepPackage