Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
単語reportで始まり、ログ拡張子を持つファイルを除くすべてのファイルを返すUnixコマンド。結果は、report.logファイルではなくreport.txtなどの出力を提供する必要があります
これにはfindを使用できます:
$ find . -type f -name report\* ! -name \*.log