--- title: CLI Usage Reference --- The [solana-cli crate](https://crates.io/crates/solana-cli) provides a command-line interface tool for Solana ## Examples ### Get Pubkey ```bash // Command $ solana-keygen pubkey // Return ``` ### Airdrop SOL/Lamports ```bash // Command $ solana airdrop 1 // Return "1 SOL" ``` ### Get Balance ```bash // Command $ solana balance // Return "3.00050001 SOL" ``` ### Confirm Transaction ```bash // Command $ solana confirm // Return "Confirmed" / "Not found" / "Transaction failed with error " ``` ### Deploy program ```bash // Command $ solana program deploy // Return ``` ## Usage