/** * **net-tools** - Linux networking base tools * * @domain `sourceforge.net/net-tools` * @programs `hostname`, `ifconfig`, `netstat`, `route` * @version `2.10.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install sourceforge.net/net-tools` * @homepage https://sourceforge.net/projects/net-tools/ * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.sourceforgenetnettools * console.log(pkg.name) // "net-tools" * console.log(pkg.description) // "Linux networking base tools" * console.log(pkg.programs) // ["hostname", "ifconfig", ...] * console.log(pkg.versions[0]) // "2.10.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/sourceforge-net/net-tools.md * @see https://ts-pkgx.netlify.app/usage */ export declare const sourceforgenetnettoolsPackage: { /** * The display name of this package. */ name: 'net-tools'; /** * The canonical domain name for this package. */ domain: 'sourceforge.net/net-tools'; /** * Brief description of what this package does. */ description: 'Linux networking base tools'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/sourceforge.net/net-tools/package.yml'; homepageUrl: 'https://sourceforge.net/projects/net-tools/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install sourceforge.net/net-tools'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +sourceforge.net/net-tools -- $SHELL -i'; launchpadInstallCommand: 'launchpad install sourceforge.net/net-tools'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['hostname', 'ifconfig', 'netstat', 'route']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.10.0']; aliases: readonly [] }; export type SourceforgenetnettoolsPackage = typeof sourceforgenetnettoolsPackage