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
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.

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
Most helpful comment
You are using PowerShell so could always fall back to something like this: