diff options
| author | Danilo M. <danix@danix.xyz> | 2026-06-29 11:36:12 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-06-29 11:36:12 +0200 |
| commit | d58312f3e8b5753ecf3e19ffbe599fc43d912ff4 (patch) | |
| tree | 2c64ed5782871f68bb680713e9731c6c274442bf /README.md | |
| parent | 58c0887ab332f89f9445d5ce8e04524c04719d60 (diff) | |
| download | is_installed-d58312f3e8b5753ecf3e19ffbe599fc43d912ff4.tar.gz is_installed-d58312f3e8b5753ecf3e19ffbe599fc43d912ff4.zip | |
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -9,18 +9,26 @@ package contains a given file. Reads the package database in ``` is_installed <item> # search package names for <item> is_installed file-search <item> # search file contents of every package for <item> -is_installed info <item> # less the matching package manifest +is_installed info <item> # less the manifest of the single match (lists candidates if many) is_installed help # show help ``` ## Install +System-wide: + ``` install -m 0755 is_installed /usr/local/bin/is_installed install -m 0644 is_installed.bash-completion \ /usr/share/bash-completion/completions/is_installed ``` +Per-user (no root, needs `~/bin` on your PATH): + +``` +install -Dm0755 is_installed ~/bin/is_installed +``` + ## License GPLv2. See [LICENSE](LICENSE). |
