How to reinstall everything?
Bill Stewart
bstewart@iname.com
Thu Jan 21 17:44:08 GMT 2021
On Sun, Jan 17, 2021 at 11:23 AM matthew patton wrote:
> can we fix setup.exe to read STDIN with '-P', like so?
> echo 'pkg1,pkg2,pkg3' | setup.exe -P -
What problem does this solve for you?
PowerShell example, if you're not familiar:
$packages = 'pkg1','pkg2','pkg3'
setup -P ($packages -join ',')
Or even this:
setup -P ((Get-Content packages.txt) -join ',')
Bill
More information about the Cygwin
mailing list