mirror of
https://github.com/Brandon-Rozek/website.git
synced 2024-11-09 10:40:34 -05:00
14 lines
449 B
Markdown
14 lines
449 B
Markdown
---
|
|
title: "Spell check on the Terminal with aspell"
|
|
date: 2019-12-10T22:20:48-05:00
|
|
draft: false
|
|
tags: [ "Linux" ]
|
|
medium_enabled: true
|
|
---
|
|
|
|
When I was working on my honors thesis, I realized that I needed a way to spell check the file. After a quick search, I stumbled upon `aspell` which is a `curses` based tool to provide an interactive way for dealing with misspellings. Try it out when you have the chance!
|
|
|
|
```bash
|
|
aspell check file.md
|
|
```
|
|
|