pub fn get_os_args() -> Vec<String>
Get the command-line arguments.
Returns all arguments including the program name.
use click::utils::get_os_args; let args = get_os_args(); // args[0] is typically the program name