Customizing Command Aliases
This guide explains how to create custom aliases for frequently used commands.
Prerequisites
Familiarity with UTMS CLI.
Steps
List Current Aliases: Display existing aliases:
poetry run utms alias list
Create a New Alias: Add an alias for a long command:
poetry run utms alias set "sync" "ntp sync"
Test the Alias: Use the alias instead of the full command:
poetry run utms sync
Delete an Alias: Remove an alias no longer needed:
poetry run utms alias delete "sync"