প্রথমত, আপনি নিরাপদে সেই ত্রুটিটিকে উপেক্ষা করতে পারেন। কমান্ডটি সফলভাবে চলবে এবং এটি সঠিকভাবে all.java
নিজেকে উপেক্ষা করবে। এটি কেবল আপনাকে জানাতেই পারে যে এটি এটি করেছে।
যাইহোক, ত্রুটি এড়াতে আপনি ব্যবহার করতে tee
এবং find's
এক্সিকিউট অপশনটি ব্যবহার করতে পারেন :
$ find . -name '*.java' -exec cat {} + | tee all.java
থেকে man find
:
-exec command ;
Execute command; true if 0 status is returned. All following
arguments to find are taken to be arguments to the command until
an argument consisting of `;' is encountered. The string `{}'
is replaced by the current file name being processed everywhere
it occurs in the arguments to the command, not just in arguments
where it is alone, as in some versions of find.
-exec command {} +
This variant of the -exec action runs the specified command on
the selected files, but the command line is built by appending
each selected file name at the end; the total number of invoca‐
tions of the command will be much less than the number of
matched files.
সুতরাং, আপনি এর ফলাফলগুলির প্রতিটিতে একটি কমান্ড চালাতে -exec
বলার find
জন্য ব্যবহার করতে পারেন । {}
প্রকৃত ফাইল / ডাইরেক্টরি খুঁজে পাওয়া নামের সঙ্গে প্রতিস্থাপিত হয়। +
শুধু মার্কার যে বলে হয় find
যে কমান্ড এখানে শেষ। আমি এটির পরিবর্তে এটি ব্যবহার করি \;
কারণ এটি কম কমান্ড চালাবে কারণ এটি তাদের যতটা সম্ভব কম রানের সাথে সংযুক্ত করার চেষ্টা করবে।
বা খুঁজে বের !
করতে ব্যবহার করুন all.java
:
$ find . -name '*.java' ! -name all.java -exec cat {} + >> all.java
বা গ্লোববিং :
$ shopt -s globstar
$ cat **/*.java > all.java