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?

More than 3 years have passed since last update.

【1行野郎】複数パスを対象にディレクトリを列挙するが、特定ディレクトリのみ探索しない2

Last updated at Posted at 2021-08-11

実行内容

下記で抽出したディレクトリに存在するファイルパスを取得する.
【1行野郎】複数パスを対象にディレクトリを列挙するが、特定ディレクトリのみ探索しない

$ echo /var/jenkins_home /home/foo | sed 's/\s\+/\n/g' | xargs -I@ find @ \( -type d 2>/dev/null -and \( -name '' -o -name '.git' -o -name '.cacahe' \) -prune \) -or \( -type d -and -print \) | xargs -I@ find @ -maxdepth 1 -type f

・最後の -maxdepth 1 を加えることでファイルパスを重複せずに得ることができる.
・fish shell v2.7.1 でも動作することを確認済み

その他処理については下記を参照.
【1行野郎】複数パスを対象にディレクトリを列挙するが、特定ディレクトリのみ探索しない

 

以上

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?