https://github.com/tymekdev/sedappeal
https://github.com/tymekdev/sedappeal
meme sed
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tymekdev/sedappeal
- Owner: TymekDev
- Created: 2023-08-14T09:05:28.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-14T09:09:20.000Z (about 2 years ago)
- Last Synced: 2025-03-07T03:17:50.707Z (7 months ago)
- Topics: meme, sed
- Language: Go
- Homepage:
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sedappeal
Did you know that `sed` substitute command does not have to be in form of
`s/foo/bar/`? It can be `s,foo,bar,` or even `sXfooXbarX`. With that in mind...```sh
echo cleavage | sed severe
# clearageecho mała | sed sałatka
# matka
```## Usage
This simple CLI, given a file with words, will find any pairs (w1, w2) where
`echo w1 | sed w2` yields another word.Notes:
- w2 will always start with "s"
- while sed supports various flags, e.g. `s/foo/bar/g` for global the CLI
assumes there are no trailing flags