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.
たとえば、探しているファイルがデータで始まり20131111、ファイルがで終わることは知っています.logが、完全なファイル名はわかりません。
20131111
.log
この日付で始まる、またはこの日付を含み、で終わるすべてのファイルを表示できるUNIXコマンドは何ですか.log。
たとえば、次のようにします。
find /certain/path -type f -name "20131111*.log"
-type f
-name "20131111*.log"
log