Scoop: multiple files install with scoop?

Created on 17 Dec 2019  路  4Comments  路  Source: lukesampson/scoop

Hi

Can we install multiple files with scoop? for example
scoop install aria2 sublimation

or can we install from the folder? for example

scoop install /myfolder/*.json

this way I'll upload all the json files

Most helpful comment

You are using PowerShell so could always fall back to something like this:

Get-ChildItem | ForEach-Object { Invoke-Expression "scoop install $($_.BaseName)" }

All 4 comments

Can we install multiple files with scoop?

Sure, scoop install aria2 sublimation should work fine :slightly_smiling_face:

or can we install from the folder?

That works too (provided your shell expands the glob), but I'd recommend using the bucket approach to benefit from update checks.

Scoop
it can be tedious to load long files like this one by one.

You are using PowerShell so could always fall back to something like this:

Get-ChildItem | ForEach-Object { Invoke-Expression "scoop install $($_.BaseName)" }

would you consider adding this as the default feature ? @r15ch13

Was this page helpful?
0 / 5 - 0 ratings

Related issues

SinisterBlade picture SinisterBlade  路  3Comments

klauern picture klauern  路  3Comments

eBaeza picture eBaeza  路  3Comments

bernstein82 picture bernstein82  路  3Comments

yetangye picture yetangye  路  3Comments