利用命令find查找当前目录下的名称尾为.c的文件,并将结果输出到标准输出的命令是
find . -name "?.c" –print
find . -name "#.c" –print
find . -name "!*.c" –print
find . -name "*.c" –print