0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

LinuxのFindの使い方 あなたは知っていましたか。

Posted at

一般的なコマンドを使わずにプログラムから、それにあった機能を使っているのでオプションまで含めては知らないことが多いです。いざ使おうとして結局使いこなせなかったことも多いです 。

環境

Ubuntu 24.04.1 LTS

パターン

次のパターン、カレントディレクトリは~/Downloadsです。

~/Downloads/mcman.txt
~/Downloads/01/mcman.txt
~/Downloads/01/mcman.docx

これで探してみます。

  • オプション無し,名前あり
bomiura@spq45:~$ cd ~/Downloads/
bomiura@spq45:~/Downloads$ find mcman.txt
mcman.txt

サブディレクトリがでてきません。オプションをつけみます。

  • オプション -name , .*
bomiura@spq45:~/Downloads$ find -name mcman.*
./mcman.txt

やっぱりでてきません。
検索単語を短くしてみます。

  • オプション -name
bomiura@spq45:~/Downloads$ find -name *mcm*
./mcman.txt
./01/mcman.txt

ようやくでました。
検索単語を短くしたので、もうひとつでないといけません。
考えてから ” でくくりました。ようやくできた。

  • オプション -name
bomiura@spq45:~/Downloads$ find -name "*mcm*"
./mcman.txt
./01/mcman.txt
./01/mcman.docx

ー以上ー

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?