# bat を Homebrew, apk, apt, dnf, MacPorts, Nix, pacman, zypper, chocolatey, scoop, winget でインストール

bat のインストール経路、実行ファイル、メタデータ、AI エージェント向けセキュリティノートを確認します。

## インストール

```sh
sudo av install brew:bat
```

追加のインストールコマンド:

### macOS

- Homebrew (100%):

```sh
brew install bat
```

  証拠: local Homebrew formula metadata

- MacPorts (94%):

```sh
sudo port install bat
```

  証拠: MacPorts ports tree: textproc/bat/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1

### Linux

- apk (92%):

```sh
sudo apk add bat
```

  証拠: Alpine Linux edge package indexes: bat from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz

- Debian apt (92%):

```sh
sudo apt install bat
```

  証拠: Debian stable package indexes: bat from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz

- dnf (92%):

```sh
sudo dnf install bat
```

  証拠: Fedora Rawhide package metadata: bat from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst

- Nix (92%):

```sh
nix profile install nixpkgs#bat
```

  証拠: nixpkgs package indexes: pkgs/by-name/ba/bat/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1

- pacman (92%):

```sh
sudo pacman -S bat
```

  証拠: Arch Linux sync databases: bat from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz

- zypper (92%):

```sh
sudo zypper install bat
```

  証拠: openSUSE Tumbleweed package metadata: bat from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst

### Windows

- Chocolatey (92%):

```sh
choco install Bat
```

  証拠: Chocolatey community package catalog: Bat from http://community.chocolatey.org/api/v2/Packages?$filter=IsLatestVersion&$select=Id&$top=1000&$skiptoken='11','azurestorageemulator'

- Scoop (92%):

```sh
scoop install main/bat
```

  証拠: Scoop official bucket manifest trees: bucket/bat.json from https://api.github.com/repos/ScoopInstaller/Main/git/trees/master?recursive=1

- winget (92%):

```sh
winget install --id sharkdp.bat -e
```

  証拠: Windows Package Manager source index: sharkdp.bat from https://cdn.winget.microsoft.com/cache/source.msix

## パッケージ情報

- **パッケージキー:** brew:bat
- **パッケージマネージャ:** Homebrew
- **バージョン:** 0.26.1
- **ソース概要:** Clone of cat(1) with syntax highlighting and Git integration
- **ホームページ:** <https://github.com/sharkdp/bat>
- **リポジトリ:** <https://github.com/sharkdp/bat>
- **最終更新:** 2026-06-22T14:02:51-07:00
- **生成日時:** 2026-08-03T19:37:03+00:00

## 実行可能ファイル

- bat (エイリアス)

## インストール挙動

- Bottle: 利用不可

## バージョンと鮮度

- ページ生成日: 2026-08-03
- マネージャ版: 0.26.1
## プロジェクトの歴史と使われ方

bat is a Rust command-line file viewer that deliberately starts from cat(1) and adds syntax highlighting, Git modification markers, automatic paging, line numbers, and integration hooks for other terminal tools.

### プロジェクトの歴史

bat's first GitHub release, v0.1.0, was published on April 22, 2018 as an initial release. The project describes itself as a cat(1) clone with syntax highlighting and Git integration, and its README states goals of advanced highlighting, Git integration, POSIX-cat replacement behavior, and a friendlier command-line interface.

The tool has stayed in the familiar Unix-filter shape rather than becoming an editor. Its README documents both pretty terminal output and fallback behavior for non-interactive output, where bat acts as a drop-in cat-style concatenator.

By the v0.25.0 release, bat was still adding practical terminal features such as squeeze-blank support, ANSI stripping, shell completions, theme behavior, and broader syntax handling, showing a mature utility polishing edge cases rather than changing identity.

### 採用の歴史

bat became one of the canonical modern Rust CLI replacements, helped by packaging across Homebrew, Debian, Ubuntu, Fedora, Arch, Alpine, Nix, MacPorts, Chocolatey, Scoop, winget, and other systems listed in the input metadata and upstream README.

The README notes that Ubuntu has carried bat since 20.04 and Debian since Bullseye, with older Debian-family releases installing the executable as batcat because of a package-name clash. That rename became part of bat's package-manager lore.

The repository's GitHub page showed roughly 59.5k stars and 43 releases at enrichment time, making bat far more than a niche wrapper.

### 使われ方

bat is commonly used directly as `bat FILE`, as a pager-backed file viewer, as a syntax-colored stdin renderer, as a git-aware diff context viewer, and as a cat replacement when invoked in non-interactive pipelines.

The README documents integrations with fzf previews, find or fd, ripgrep through batgrep, tail -f log viewing, git show, git diff helpers, and clipboard workflows where plain output matters.

### パッケージ好きにとっての重要性

bat is significant because it helped define the 2010s/2020s style of polished Rust command-line utilities: familiar Unix nouns, fast single binaries, colorful defaults, Git awareness, good package-manager coverage, and careful degradation in pipes.

For package nerds, it is also a naming and policy specimen. The Debian/Ubuntu batcat period shows how a simple binary name can collide with existing packages, forcing downstream-visible aliases and workarounds even for a very popular tool.

It matters culturally because many later CLI packages pitch themselves in the same grammar: a small classic Unix command, rebuilt with syntax awareness, colors, Git context, and modern ergonomics.

### タイムライン

- 2018: v0.1.0 initial release published on GitHub.
- 2020: README documents availability in Ubuntu 20.04 and later.
- 2021: README documents availability in Debian 11 Bullseye and later.
- 2025: v0.25.0 release adds polish such as squeeze-blank, ANSI-stripping, shell completions, and theme behavior.
- 2025: Repository page lists v0.26.1 as the latest release on December 2, 2025.

### Related projects

- bat-extras builds helper scripts around bat for ripgrep, man pages, diffs, and other terminal workflows.
- delta is called out by bat's README as a related tool for richer git and diff support.
- fd, fzf, ripgrep, git, less, and tail are common tools bat is documented to integrate with.

### ソース

- <https://github.com/sharkdp/bat>
- <https://github.com/sharkdp/bat/releases/tag/v0.1.0>
- <https://github.com/sharkdp/bat/releases/tag/v0.25.0>
- source_facts.package-manager


## セキュリティノート

narrow executable package without higher-risk signals.

- **Geiger リスク:** グリーン / 低
- narrow executable package without higher-risk signals


## Configuration and credential file locations

These source-backed paths show where this package keeps local settings or durable credentials. Automic Vault can use them as review targets for secret scanning, migration, and command approval.


## Configuration files

- Unix: /etc/bat/config
- Windows: C:\ProgramData\bat\config
## 他のパッケージマネージャ記録

- Debian apt - bat - 0.25.0-2+b2: normalized package name match | Debian stable package indexes: bat from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | cat(1) clone with syntax highlighting and git integration | https://github.com/sharkdp/bat
- Nix - bat: normalized package name match | nixpkgs package indexes: pkgs/by-name/ba/bat/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1
- Ubuntu apt - bat - 0.24.0-1build1: normalized package name match | Ubuntu 24.04 LTS package indexes: bat from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | cat(1) clone with syntax highlighting and git integration | https://github.com/sharkdp/bat
- apk - bat - 0.26.1-r0: normalized package name match | Alpine Linux edge package indexes: bat from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | cat(1) clone with wings | https://github.com/sharkdp/bat
- apk - bat-bash-completion - 0.26.1-r0: normalized package name match | Alpine Linux edge package indexes: bat-bash-completion from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Bash completions for bat | https://github.com/sharkdp/bat
- apk - bat-doc - 0.26.1-r0: normalized package name match | Alpine Linux edge package indexes: bat-doc from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | cat(1) clone with wings (documentation) | https://github.com/sharkdp/bat
- apk - bat-fish-completion - 0.26.1-r0: normalized package name match | Alpine Linux edge package indexes: bat-fish-completion from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Fish completions for bat | https://github.com/sharkdp/bat
- apk - bat-zsh-completion - 0.26.1-r0: normalized package name match | Alpine Linux edge package indexes: bat-zsh-completion from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Zsh completions for bat | https://github.com/sharkdp/bat
- dnf - bat - 0.26.1-2.fc45: normalized package name match | Fedora Rawhide package metadata: bat from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst | Cat(1) clone with wings | https://crates.io/crates/bat
- pacman - bat - 0.26.1-2: normalized package name match | Arch Linux sync databases: bat from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz | Cat clone with syntax highlighting and git integration | https://github.com/sharkdp/bat
- zypper - bat - 0.26.1-2.1: normalized package name match | openSUSE Tumbleweed package metadata: bat from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | A cat(1) clone with syntax highlighting and Git integration | https://github.com/sharkdp/bat
- zypper - bat-bash-completion - 0.26.1-2.1: normalized package name match | openSUSE Tumbleweed package metadata: bat-bash-completion from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | Bash completion for bat | https://github.com/sharkdp/bat
- zypper - bat-fish-completion - 0.26.1-2.1: normalized package name match | openSUSE Tumbleweed package metadata: bat-fish-completion from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | Fish completion for bat | https://github.com/sharkdp/bat
- zypper - bat-zsh-completion - 0.26.1-2.1: normalized package name match | openSUSE Tumbleweed package metadata: bat-zsh-completion from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | Zsh completion for bat | https://github.com/sharkdp/bat
- MacPorts - bat: normalized package name match | MacPorts ports tree: textproc/bat/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1
- Chocolatey - Bat: normalized package name match | Chocolatey community package catalog: Bat from http://community.chocolatey.org/api/v2/Packages?$filter=IsLatestVersion&$select=Id&$top=1000&$skiptoken='11','azurestorageemulator'


## 関連リンク

- [bat](https://pkg.so/ja/pkg/cargo/bat/) - Same normalized package name exists in another local package ecosystem.

## Combined YAML source

View the package source record on GitHub. [combined/bat.yml](https://github.com/mxcl/pkgdb/blob/main/combined/bat.yml)


## ソース

- pkg.so package database
- Geiger risk classifier
- curated configuration and credential file locations
- curated package history
- pkgdb category and tag curation
- external package-manager database matches
- cross-ecosystem install command graph
