Command

linux 検索コマンド(find)

2015年5月21日

findコマンド

Linuxでファイルを探す時に毎回忘れてしまうのでメモとして置いておきます。

利用するコマンドは、findコマンドになります。

$ find [option] [path...] [expression]
$ find ~/ -name 'test.php' -ls
2254413 24 -rw-r--r-- 1 user staff 9689 5 9 22:16 /***/**/test.php
2039712 8 -rw-r--r-- 1 user staff 158 3 13 23:41 /***/**/test.php

ワイルドカード「*」も使用できる(*.phpみたいな感じ)

オプション使用して色々できるけど、後は他のサイトを参考に。

参考サイト
ITpro

-Command
-