উত্তর:
আপনি কেবলমাত্র -I
পৃথক করে কমান্ডের সমস্ত নিদর্শন সরবরাহ করুন |
। ম্যানপেজ থেকে:
-P pattern
List only those files that match the wild-card pattern. Note:
you must use the -a option to also consider those files begin‐
ning with a dot `.' for matching. Valid wildcard operators are
`*' (any zero or more characters), `?' (any single character),
`[...]' (any single character listed between brackets (optional
- (dash) for character range may be used: ex: [A-Z]), and
`[^...]' (any single character not listed in brackets) and `|'
separates alternate patterns.
-I pattern
Do not list those files that match the wild-card pattern.
সুতরাং, উদাহরণস্বরূপ
tree -I 'test*|docs|bin|lib'
'ডকস', 'বিন', এবং 'লিবিব', ডিরেক্টরিগুলি এবং নামের সাথে 'টেস্ট' সহ যে কোনও ডিরেক্টরি এড়িয়ে যায়, যেখানেই তারা ডিরেক্টরিক্রমক্রমের মধ্যে থাকতে পারে। স্পষ্টতই, আপনি আরও অনেক শক্তিশালী মিলের জন্য ওয়াইল্ডকার্ড প্রয়োগ করতে পারেন।
docs/subdoc/
বাদ দেওয়া যায়?
tree --prune -P '*.html'
আপনি কীভাবে ডিরেক্টরিগুলি পাবেন তবে কেবলমাত্র সেগুলিতে .html
ফাইল রয়েছে।