Skip to content

Latest commit

 

History

History
63 lines (45 loc) · 1.88 KB

File metadata and controls

63 lines (45 loc) · 1.88 KB

azldev component list

List components in this project

Synopsis

List components defined in the project configuration.

By default only matching components are shown. Use -a to list all components. Component name patterns support glob syntax (*, ?, []).

azldev component list [flags]

Examples

  # List all components
  azldev component list -a

  # List a specific component
  azldev component list -p curl

  # List components matching a pattern
  azldev component list -p "azure*"

  # Output as JSON for scripting
  azldev component list -a -q -O json

Options

  -a, --all-components                Include all components
  -p, --component stringArray         Component name pattern
  -g, --component-group stringArray   Component group name
  -h, --help                          help for list
  -s, --spec-path stringArray         Spec path

Options inherited from parent commands

  -y, --accept-all                accept all prompts
      --color mode                output colorization mode {always, auto, never} (default auto)
      --config-file stringArray   additional TOML config file(s) to merge (may be repeated)
  -n, --dry-run                   dry run only (do not take action)
      --network-retries int       maximum number of attempts for network operations (minimum 1) (default 3)
      --no-default-config         disable default configuration
  -O, --output-format fmt         output format {csv, json, markdown, table} (default table)
      --permissive-config         do not fail on unknown fields in TOML config files
  -C, --project string            path to Azure Linux project
  -q, --quiet                     only enable minimal output
  -v, --verbose                   enable verbose output

SEE ALSO