/** * **bash** - Bourne-Again SHell, a UNIX command interpreter * * @domain `gnu.org/bash` * @programs `bash`, `bashbug` * @version `5.3.0` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install gnu.org/bash` * @homepage https://www.gnu.org/software/bash/ * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnuorgbash * console.log(pkg.name) // "bash" * console.log(pkg.description) // "Bourne-Again SHell, a UNIX command interpreter" * console.log(pkg.programs) // ["bash", "bashbug"] * console.log(pkg.versions[0]) // "5.3.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnu-org/bash.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gnuorgbashPackage: { /** * The display name of this package. */ name: 'bash'; /** * The canonical domain name for this package. */ domain: 'gnu.org/bash'; /** * Brief description of what this package does. */ description: 'Bourne-Again SHell, a UNIX command interpreter'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/bash/package.yml'; homepageUrl: 'https://www.gnu.org/software/bash/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gnu.org/bash'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnu.org/bash -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gnu.org/bash'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['bash', 'bashbug']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.3.0', '5.2.37', '5.2.32', '5.2.21', '5.2.15', '5.1.16']; aliases: readonly [] }; export type GnuorgbashPackage = typeof gnuorgbashPackage