I'm trying to convert a file into txt and sort it. I'm using wget, that I've already installed
wget 'https://bitkeys.work/btc_balance_sorted.csv'
cut -d, -f 1 btc_balance_sorted.csv | grep -v address > public_addresses_sorted.txt
When I enter the above command, it says that grep isn't recognized as a command.
I'm using the Windows command prompt.