/** * **rename** - Rename multiple files * * @domain `plasmasturm.org/rename` * @programs `rename` * @version `1.601.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install plasmasturm.org/rename` * @homepage http://plasmasturm.org/code/rename/ * @dependencies `perl.org>=5` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.plasmasturmorgrename * console.log(pkg.name) // "rename" * console.log(pkg.description) // "Rename multiple files" * console.log(pkg.programs) // ["rename"] * console.log(pkg.versions[0]) // "1.601.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/plasmasturm-org/rename.md * @see https://ts-pkgx.netlify.app/usage */ export declare const plasmasturmorgrenamePackage: { /** * The display name of this package. */ name: 'rename'; /** * The canonical domain name for this package. */ domain: 'plasmasturm.org/rename'; /** * Brief description of what this package does. */ description: 'Rename multiple files'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/plasmasturm.org/rename/package.yml'; homepageUrl: 'http://plasmasturm.org/code/rename/'; githubUrl: 'https://github.com/ap/rename'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install plasmasturm.org/rename'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +plasmasturm.org/rename -- $SHELL -i'; launchpadInstallCommand: 'launchpad install plasmasturm.org/rename'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['rename']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['perl.org>=5']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.601.0']; aliases: readonly [] }; export type PlasmasturmorgrenamePackage = typeof plasmasturmorgrenamePackage