chia-toolkit / chia.keva.app

11 stars 8 forks source link

Thanks! & auto loader for Windows Power shell #3

Open PaulNaylor opened 3 years ago

PaulNaylor commented 3 years ago

Just wanted to let you know I appreciate the work you've done and I made the auto loader for Windows Power shell: curl https://chia.keva.app/ | Select-String -Pattern '\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b' -AllMatches | % { $_.Matches } | % { $_.Value } | ForEach-Object { Start-Sleep -s 5; chia show -a $_ + ":8444" }

you may want to add it to the Unix one you have on your chia.keva.app page. Thanks :) Paul.

MarFre22 commented 3 years ago

Hi, thank you very much for your help! I tried your script but it does not work. I'd like to suggest a quick fix :)

curl https://chia.keva.app/ | Select-String -Pattern '\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b' -AllMatches | % { $_.Matches } | % { $_.Value } | ForEach-Object { Start-Sleep -s 5; chia show -a $_":8444" }
kawww commented 3 years ago

This is great, thanks.

LoudSyncro commented 1 year ago

"chia show -a" is deprecated.

Use ".\chia.exe peer full_node -a" instead :-)