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.
私は現在持っています:
ls -1 $(pwd)/*
ディレクトリ内のすべてのファイルを絶対パスで提供しますが、ファイルの各リストの先頭にあるディレクトリでフォーマットします。
ディレクトリ/サブディレクトリ自体を除いて、ディレクトリ内のファイルのリストを再帰的に(絶対パス)取得する方法はありますか?
find $(pwd) -type f -print
また
find $(pwd) -type f -ls
他のものにフィードする場合は、-print0(スペースを含むファイル名を処理するため)が必要になる場合があります。
例:検索。-type f -print0 | xargs --null --no-run-if-empty grep