mirror of
https://github.com/sharkdp/bat.git
synced 2024-11-08 17:04:22 +01:00
translate Key Features & How to Use
This commit is contained in:
parent
3ec96127f2
commit
159f234b78
@ -7,80 +7,69 @@
|
|||||||
A <i>cat(1)</i> clone with syntax highlighting and Git integration.
|
A <i>cat(1)</i> clone with syntax highlighting and Git integration.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p align="center">
|
|
||||||
<a href="#syntax-highlighting">特徴</a> •
|
|
||||||
<a href="#how-to-use">使い方</a> •
|
|
||||||
<a href="#installation">インストール</a> •
|
|
||||||
<a href="#customization">カスタマイズ</a> •
|
|
||||||
<a href="#project-goals-and-alternatives">プロジェクトの目標と選択肢</a>
|
|
||||||
公式ドキュメント [<a href="https://github.com/sharkdp/bat">英文</a>]
|
|
||||||
翻訳 [<a href="https://github.com/chinanf-boy/bat-zh">中文</a>]
|
|
||||||
</p>
|
|
||||||
|
|
||||||
### Syntax highlighting
|
### シンタックスハイライト
|
||||||
|
|
||||||
`bat` supports syntax highlighting for a large number of programming and markup
|
`bat` は多くのプログラミング言語やマークアップ言語のシンタックスハイライトに対応しています。
|
||||||
languages:
|
|
||||||
|
|
||||||
![Syntax highlighting example](https://imgur.com/rGsdnDe.png)
|
![Syntax highlighting example](https://imgur.com/rGsdnDe.png)
|
||||||
|
|
||||||
### Git integration
|
### Gitの統合
|
||||||
|
|
||||||
`bat` communicates with `git` to show modifications with respect to the index
|
|
||||||
(see left side bar):
|
`bat` は `git` とも連携しており、差分を表現する記号が表示されます(図の左端):
|
||||||
|
|
||||||
![Git integration example](https://i.imgur.com/2lSW4RE.png)
|
![Git integration example](https://i.imgur.com/2lSW4RE.png)
|
||||||
|
|
||||||
### Show non-printable characters
|
### 空白文字の可視化
|
||||||
|
|
||||||
You can use the `-A`/`--show-all` option to show and highlight non-printable
|
`-A`/`--show-all` オプションをつけることで、空白文字を可視化できます:
|
||||||
characters:
|
|
||||||
|
|
||||||
![Non-printable character example](https://i.imgur.com/WndGp9H.png)
|
![Non-printable character example](https://i.imgur.com/WndGp9H.png)
|
||||||
|
|
||||||
### Automatic paging
|
### 自動呼び出し
|
||||||
|
|
||||||
`bat` can pipe its own output to `less` if the output is too large for one screen.
|
出力が1つの画面に対して大きすぎる場合、`bat` は自身の出力を `less` にパイプで繋げることが可能です。
|
||||||
|
|
||||||
### File concatenation
|
### ファイルの連結
|
||||||
|
|
||||||
Oh.. you can also use it to concatenate files :wink:. Whenever
|
あなたはさらにファイルを連結させるに使うことも可能です:wink:。
|
||||||
`bat` detects a non-interactive terminal (i.e. when you pipe into another process
|
`bat` は非対話型のターミナルを検出すると、いつでも `cat` の完全互換として振る舞い、
|
||||||
or into a file), `bat` will act as a drop-in replacement for `cat` and
|
プレーンなファイルを表示します。
|
||||||
fall back to printing the plain file contents.
|
|
||||||
|
|
||||||
## How to use
|
## 使い方
|
||||||
|
|
||||||
Display a single file on the terminal
|
単一のファイルを表示させたい
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
> bat README.md
|
> bat README.md
|
||||||
```
|
```
|
||||||
|
|
||||||
Display multiple files at once
|
複数のファイルを一度に表示させたい場合
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
> bat src/*.rs
|
> bat src/*.rs
|
||||||
```
|
```
|
||||||
|
|
||||||
Read from stdin, determine the syntax automatically
|
標準入力から自動的に構文を決定させたい場合
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
> curl -s https://sh.rustup.rs | bat
|
> curl -s https://sh.rustup.rs | bat
|
||||||
```
|
```
|
||||||
|
|
||||||
Read from stdin, specify the language explicitly
|
Read from stdin, specify the language explicitly
|
||||||
|
標準入力から明示的に言語を指定したい場合
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
> yaml2json .travis.yml | json_pp | bat -l json
|
> yaml2json .travis.yml | json_pp | bat -l json
|
||||||
```
|
```
|
||||||
|
|
||||||
Show and highlight non-printable characters:
|
空白文字を可視化させたい場合:
|
||||||
```bash
|
```bash
|
||||||
> bat -A /etc/hosts
|
> bat -A /etc/hosts
|
||||||
```
|
```
|
||||||
|
|
||||||
Use it as a `cat` replacement:
|
`cat` の代わりに `bat` を使用する際の例:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
bat > note.md # quickly create a new file
|
bat > note.md # quickly create a new file
|
||||||
|
Loading…
Reference in New Issue
Block a user