Skip to content

Instantly share code, notes, and snippets.

@kenrachynski
Forked from anonymous/install_software.ps
Last active August 29, 2015 14:16
Show Gist options
  • Select an option

  • Save kenrachynski/60a7461e8ede461187e6 to your computer and use it in GitHub Desktop.

Select an option

Save kenrachynski/60a7461e8ede461187e6 to your computer and use it in GitHub Desktop.
filter InstallSoftware{&chocolatey (@("install", "-y") + $_)}
$cygwinSoftware = @(
"tar",
"tmux",
"vim"
)
$software = @(
"autohotkey",
"cmake",
@("cyg-get", $cygwinSoftware -join ",")
)
$software | InstallSoftware
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment