https://github.com/wunderkind2k1/emojiterm
A simple cli tool that encodes words into emojis and echos them to the terminal. use this in your scripts.
https://github.com/wunderkind2k1/emojiterm
cli command-line emoji go golang terminal
Last synced: 6 months ago
JSON representation
A simple cli tool that encodes words into emojis and echos them to the terminal. use this in your scripts.
- Host: GitHub
- URL: https://github.com/wunderkind2k1/emojiterm
- Owner: wunderkind2k1
- License: mit
- Created: 2023-02-01T11:53:09.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-09T20:11:39.000Z (over 3 years ago)
- Last Synced: 2024-06-19T13:46:48.067Z (about 2 years ago)
- Topics: cli, command-line, emoji, go, golang, terminal
- Language: Go
- Homepage:
- Size: 1.58 MB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# emojiterm
A simple cli tool that encodes words into emojis and echos them to the terminal. use this in your scripts.

## Installation
### With homebrew
```shell
brew tap wunderkind2k1/tap
brew install emojiterm
```

### Go standard: Through _go install_
```shell
go install github.com/wunderkind2k1/emojiterm@latest
```
## Usage
```shell
emojiterm beer sushi bento
πΊ π£ π±
```
__or (since v.0.0.2)__
```shell
# to copy into clipboard. Needs pbcopy or xclip installed though
emojiterm -c beer sushi bento
```
Of course pipes are going to work like before
```shell
# use pipes and don't eat sushi - note: -c is optional
emojiterm -c beer bento sushi | cut -c 1,4
> πΊπ±
# your clipboard still has the sushi
```
or try to help yourself
```shell
emojiterm help
NAME:
emojiterm - text to emoji converter - Use underscore instead of space in emoji names - emojiterm "" | Example: emojiterm "sun wine_glass beer)"
Names are based on this file: https://raw.githubusercontent.com/iamcal/emoji-data/master/emoji.json
USAGE:
emojiterm - text to emoji converter - Use underscore instead of space in emoji names [global options] command [command options] [arguments...]
COMMANDS:
help, h Shows a list of commands or help for one command
GLOBAL OPTIONS:
--clipboard, -c write emojis to clipboard
--help, -h show help
```