根据下面的函数,写明其执行的结果() #-------------------c:/linux/ex3-2.sh--------------------------- #created:11/02/2013 18:47 #!/bin/bash #Definition parameters file="/bin/la" #Definition function function fun() { if [ -e "$file" ];then echo "The file exists." else echo "The file does not exists" fi } #Call function fun #Note: if the "/bin/la" file does not exists