### Install yc via curl Source: https://github.com/vivgrid/yc/blob/main/README.md Installs the 'yc' command-line client by downloading a pre-compiled binary using 'curl' and piping it to 'sh' for execution. This method provides a quick way to get the client running. ```sh curl "https://bina.egoist.dev/vivgrid/yc" | sh ``` -------------------------------- ### Build yc from source Source: https://github.com/vivgrid/yc/blob/main/README.md Builds the 'yc' command-line client from its source code using 'make' and then copies the compiled binary to a system-wide executable path. This method is suitable for developers or those who prefer to compile from source. ```sh make sudo cp ./bin/yc /usr/local/bin/ ``` -------------------------------- ### Display yc help message Source: https://github.com/vivgrid/yc/blob/main/README.md Shows the available commands and options for the 'yc' command-line client by running it with the '--help' flag. This is useful for understanding the client's functionality and available arguments. ```sh yc --help ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.