#!/bin/bash
function my_ls()
{
ls
}
my_ls
shell 函数申明和调用
最新推荐文章于 2024-07-02 14:30:00 发布
#!/bin/bash
function my_ls()
{
ls
}
my_ls