Windows를 위한 명령줄 설치기
Windows계의 Homebrew
PowerShell Core가 포함된 PowerShell 5 (혹은 이후 버전)과 .NET Framework 4.5 (혹은 이후 버전)이 필요합니다.
1Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
혹은 더 짧게
1iwr -useb get.scoop.sh | iex
알아두세요: 만약 오류가 난다면 실행 정책을 변경해야 할 수도 있습니다.
1Set-ExecutionPolicy RemoteSigned -scope CurrentUser
1> scoop help
2Usage: scoop <command> [<args>]
3
4Some useful commands are:
5
6alias Manage scoop aliases
7bucket Manage Scoop buckets
8cache Show or clear the download cache
9checkup Check for potential problems
10cleanup Cleanup apps by removing old versions
11config Get or set configuration values
12create Create a custom app manifest
13depends List dependencies for an app
14export Exports (an importable) list of installed apps
15help Show help for a command
16hold Hold an app to disable updates
17home Opens the app homepage
18info Display information about an app
19install Install apps
20list List installed apps
21prefix Returns the path to the specified app
22reset Reset an app to resolve conflicts
23search Search available apps
24status Show status and check for new app versions
25unhold Unhold an app to enable updates
26uninstall Uninstall an app
27update Update apps, or Scoop itself
28virustotal Look for app's hash on virustotal.com
29which Locate a shim/executable (similar to 'which' on Linux)
30
31
32Type 'scoop help <command>' to get help for a specific command.