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.
/app の下に多数のファイルを含むプロジェクトがあります。ファイルを含むサブフォルダーもあります。各ファイルを手動で印刷せずに、これらのファイルをすべて印刷 (ハード コピー) するにはどうすればよいですか?
注: ファイル名ではありません。/app配下の全ファイルの内容を印刷(ハードコピー)したい
使用find:
find
find /app
ディレクトリのみを印刷する場合は、 -type d(-type fファイルのみを印刷する)で指定します。
-type d
-type f
find /app -type d
アップデート
find /app -type f -print -exec cat {} \;
ファイルをハード コピーするには、次のlprコマンドを使用します。
lpr
find /app -type f -print -exec lpr {} \;