寻找py的脚本 find ./ -name "*py" 寻找R脚本 find ./ -name "*R" 即寻找py脚本又寻找R脚本 注意,这里用-o表示或 find . -name "*py" -o -name "*.R"