如何仅显示其中名称为 ScheduledJobs 的 .txt 文件

如何仅显示其中名称为 ScheduledJobs 的 .txt 文件

我已经尝试过这个:

find ~/ops_scripts -type f -maxdepth 1 -name "ScheduledJobs*"

但我不确定如何仅显示 .txt 文件。

答案1

你是这个意思吗?

find ~/ops_scripts -type f -maxdepth 1 -name "*ScheduledJobs*.txt"

相关内容