Open
Description
I'm trying the usage examples, but I can't recover seeds with SSKR, every time I press enter it asks for another input, I have to end it with Ctrl+C like here:
C:\Users\aaa\.cargo\bin>seedtool` --out sskr -g 2-of-3 -s btwm
tantkpgowkguaeadaersrncktdjyoysalgpfuturndjyuecamhwswtwdos
tantkpgowkguaeadadsfvadtptvdrevwylwlgamnptsffguebznypriast
tantkpgowkguaeadaohkbajodkgaldlkkkaowykizmctyklalysfbglahh
C:\Users\aaa\.cargo\bin>seedtool --in sskr
tantkpgowkguaeadaersrncktdjyoysalgpfuturndjyuecamhwswtwdos
tantkpgowkguaeadadsfvadtptvdrevwylwlgamnptsffguebznypriast
^D
^C
C:\Users\aaa\.cargo\bin>
Activity
wolfmcnally commentedon Dec 12, 2024
It seems the issue arises because seedtool expects EOF (End Of File) input, and this behavior differs between Unix-based systems and Windows. On Unix, EOF is signaled with Ctrl+D, while on Windows, it is typically Ctrl+Z followed by Enter.
If you’re using Windows, when entering the last line of input, press Ctrl+Z, then hit Enter. This should signal EOF and allow seedtool to process the input.