DEV Community

Cover image for ๐Ÿ–‹Find synonyms in 15+ languages directly from your terminal
Matthieu Petiteau
Matthieu Petiteau

Posted on

๐Ÿ–‹Find synonyms in 15+ languages directly from your terminal

I created a small bash utility to quickly find synonyms in 15 different languages directly from command line.

I couldn't imagine how handy this would be, specially when writing READMEs or using Vim ๐Ÿ˜„!

Thought I'd share it with you here!

Repo: https://github.com/smallwat3r/synonym

Top comments (2)

Collapse
 
darksmile92 profile image
Robin Kretzschmar

Great tool!
I only recently learned about the set -e statement for bash scripts, so I want to share my newly learned information and suggest to add it at the top of your script :)

Reference: Writing Robust Bash Shell Scripts

Collapse
 
smallwat3r profile image
Matthieu Petiteau • Edited

Thanks! Definitely something I will look at :)