I would normally do:
read.csv(pipe("wget -O- stdout http://someServer/aFile.csv"))
But in this case the wget command that works is this one:
wget -O- stdout http://someServer/aFile.csv --user=foo --ask-password
This prompts for a password before working. If I pass this to pipe
it hangs, is there a workaround that wouldn't require clear typing the password?