📌  相关文章
📜  bash 查找带有扩展名的文件 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:10.402000             🧑  作者: Mango

代码示例1
# syntax
find  -name '.'

# example 
find /export/home/jacquesk -name '*.txt'

# This will search in folder-path (including subdirectories) 
# of "/export/home/jacquesk", and will show any files 
# that end in '.txt'