linux 使用当前目录下的so文件_51CTO博客 2022年6月6日 - linux shell判断当前目录下的文件或目录#!bin/shfor file in ./*do if test -f $file then echo $file 是文件 else echo $file 是目录 fidone .linux ...