Dushistov / sdcv

https://dushistov.github.io/sdcv/
GNU General Public License v2.0
294 stars 42 forks source link

accept words with '-tion' #32

Closed amosbird closed 6 years ago

amosbird commented 6 years ago

Hi, sdcv currently doesn't support passing word with leading dash, not even in quotes. Is there a way to achieve this?

Dushistov commented 6 years ago

One way:

echo '-tion' | sdcv

another way:

sdcv '\-tion'
amosbird commented 6 years ago

thanks