Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elisherer/cecho
colorful echo for windows
https://github.com/elisherer/cecho
Last synced: about 5 hours ago
JSON representation
colorful echo for windows
- Host: GitHub
- URL: https://github.com/elisherer/cecho
- Owner: elisherer
- Created: 2015-06-03T09:46:59.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-04-09T11:07:04.000Z (over 6 years ago)
- Last Synced: 2023-03-27T18:06:55.364Z (over 1 year ago)
- Language: C#
- Homepage:
- Size: 48.8 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cecho
colorful echo for windows```
cecho v1.0 by elishererDisplays messages, with colors by using escape codes.
Escape Codes:
\## - # is an hex digit [0-F] representing a color, 1st is the backcolor
\m - Reset color (not NULL)
\n - Line-feed \r - Carriage-return \t - (Horizontal-) Tab
\u#### - A unicode character. #### - the hexadecimal value.
\U######## - A UTF32 character. ######## - the hexadecimal value.
\x1b[##m - ANSI color syntax - ## as specified in the table below
\x1b[0m - Reset color
\" - The character " \\ - The character \* The values 0-F are used for foreground, for background add 10.
**The ^ sign escapes to insert other letters like & when not using parentheses.
```
Example:
```bat
@echo off
cecho "ÜŰŰŰŰŰŰŰŰŰŰŰŰŰŰŰŰŰŰŰŰŰŰŰŰŰÜ"
cecho "ŰŰ\40 \mŰ\50 \mŰŰ\40 \mŰ\30 \mŰŰ\30 \mŰŰ\20 \mŰŰ"
cecho "Ű\40 \mŰŰŰŰ\50 \mŰŰŰŰ\40 \mŰŰŰŰ\30 \mŰŰ\30 \mŰ\20 \mŰŰŰ\20 \mŰ"
cecho "Ű\40 \mŰŰŰŰ\50 \mŰ\40 \mŰŰŰŰ\30 \mŰ\20 \mŰŰŰ\20 \mŰ"
cecho "Ű\40 \mŰŰŰŰ\50 \mŰŰŰŰ\40 \mŰŰŰŰ\30 \mŰŰ\30 \mŰ\20 \mŰŰŰ\20 \mŰ"
cecho "ŰŰ\40 \mŰ\50 \mŰŰ\40 \mŰ\30 \mŰŰ\30 \mŰŰ\20 \mŰŰ by elisherer"
cecho "ßŰŰŰŰŰŰŰŰŰŰŰŰŰŰŰŰŰŰŰŰŰŰŰŰŰß"
```![](./cecho/screenshot.jpg)