Skip to content

Commit

Permalink
bat: add page (#2296) (#2297)
Browse files Browse the repository at this point in the history
  • Loading branch information
mfrw authored and sbrl committed Sep 6, 2018
1 parent bab9532 commit 8f0e854
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pages/common/bat.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# bat

> Print and concatenate files.
> A `cat` clone with syntax highlighting and Git integration.
- Print the contents of a file to the standard output:

`bat {{file}}`

- Concatenate several files into the target file:

`bat {{file1}} {{file2}} > {{target_file}}`

- Append several files into the target file:

`bat {{file1}} {{file2}} >> {{target_file}}`

- Number all output lines:

`bat -n {{file}}`

- Syntax highlight a json file:

`bat --language json {{file.json}}`

- Display all supported languages:

`bat --list-language`

0 comments on commit 8f0e854

Please sign in to comment.