mirror of
https://github.com/Brandon-Rozek/website.git
synced 2025-10-09 14:31:13 +00:00
Added blog posts
This commit is contained in:
parent
4305d8d5ca
commit
83d9c0e313
5 changed files with 127 additions and 0 deletions
27
content/blog/bat.md
Normal file
27
content/blog/bat.md
Normal file
|
@ -0,0 +1,27 @@
|
|||
---
|
||||
title: "Bat: The user friendly cat"
|
||||
date: 2020-02-01T06:26:18-05:00
|
||||
draft: false
|
||||
images: []
|
||||
---
|
||||
|
||||
`bat` is a more human pleasing replacement of `cat` with the following features:
|
||||
|
||||
- syntax highlighting support
|
||||
- git integration
|
||||
- automatic paging
|
||||
|
||||
To test it out I wrote a file called `test.py`
|
||||
|
||||
```python
|
||||
from collections import Counter
|
||||
|
||||
items = [1,3,1,6,3]
|
||||
c = Counter(items)
|
||||
|
||||
print(c[1])
|
||||
```
|
||||
|
||||
And here's a screenshot of my terminal session when I called `bat`
|
||||
|
||||

|
Loading…
Add table
Add a link
Reference in a new issue