find . -type f -exec ls -l {} \;
摘要:
find 命令 查找,搭配exec 对查找到的文件操作。 -exec 后跟command,终止以;结尾,考虑到分号在不同系统中的不同含义,所以习惯用\;转译。 花括号{}指代前面find查找到文件。 例子: find . -type f -exec ls -l {} \; find -type f 阅读全文
posted @ 2021-11-09 10:41 BioinformaticsMaster 阅读(232) 评论(0) 推荐(0) 编辑