shell编程杂记
1 注释符号:#
2 函数声明与调用
#!/bin/bash #biginsights_ini #单击SSH配置函数 function config_ssh() { echo 'config_ssh'; } config_ssh;