完善程序,实现函数调用。 #!/bin/bash testfile( ) #函数定义 {if [ -d $1 ] then echo "$1 is a directory!" else echo "$1 is not a directory!" fi return } (1) #函数调用
时间: 2024-01-21 08:02:44 浏览: 31
20120822_用bash脚本进行代码行数统计1
要实现函数调用,需要在程序中添加调用语句。修改后的程序如下:
```
#!/bin/bash
testfile() { #函数定义
if [ -d $1 ]
then
echo "$1 is a directory!"
else
echo "$1 is not a directory!"
fi
return
}
testfile /etc #函数调用
```
在修改后的程序中,添加了函数调用语句testfile /etc,这会调用名为testfile的函数,并将/etc作为参数传递给该函数。函数会判断/etc是否为目录,并输出相应的信息。
阅读全文