find 「検索ディレクトリ」 「検索条件」 「コマンド」
find ディレクトリ -name 引数の後に正規表現
[root@cent2 named]# find / -name named.conf
/etc/dbus-1/system.d/named.conf
/usr/share/logwatch/default.conf/services/named.conf
/usr/share/doc/bind-9.3.6/sample/etc/named.conf
[root@cent2 named]# find . -type f
./chroot/etc/localtime
./chroot/etc/rndc.key
[root@cent2 python]# find . -type f -print
「/usr/local」「/usr/bin」「/usr/sbin」と3つのディレクトリの全ファイルを表示する場合
find /usr/local /usr/bin /usr/sbin -type f -print
find ディレクトリ -name 引数の後に正規表現
[root@cent2 named]# find / -name named.conf
/etc/dbus-1/system.d/named.conf
/usr/share/logwatch/default.conf/services/named.conf
/usr/share/doc/bind-9.3.6/sample/etc/named.conf
[root@cent2 named]# find . -type f
./chroot/etc/localtime
./chroot/etc/rndc.key
[root@cent2 python]# find . -type f -print
「/usr/local」「/usr/bin」「/usr/sbin」と3つのディレクトリの全ファイルを表示する場合
find /usr/local /usr/bin /usr/sbin -type f -print
Comments
Post a Comment