Does Move have a doc of command line?

Does Move have a document of command line such as ‘move sandbox run’,I’m confused about passing arguments during call a script or function. The command line helper just says to use ‘–args’ but there‘s no example in case that script has multi args .
eg:

script {
    use std::debug;
    fun add(a: u64,b:u64){
        debug::print(&(a+b))
    }
}

How should I run this script?

Here are the Aptos CLI docs: Use Aptos CLI | Aptos Docs

1 Like