यह पहले से ही अच्छी तरह से उत्तर दिया गया है, लेकिन मुझे ऐसी स्थिति मिली जहां मैं कई पैकेजों को "चिह्नित" नहीं करना चाहता था (और फिर उन्हें चिह्नित नहीं करता autoremove
)।
जब संकुल आप की सूची चाहते autoremove को आसानी से परिभाषित किया गया है, तो आप कर सकते हैं पाइप / sed
/ xargs
उन्हें बाहर।
मेरे पास कई पैकेजों का एक जटिल उदाहरण नहीं है, लेकिन अगर मेरे पास निम्न परिदृश्य है:
root@fptc-rsvrd:~# apt-get autoremove
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages will be REMOVED:
libluajit-5.1-2 libluajit-5.1-common linux-headers-4.4.0-141 linux-headers-4.4.0-141-generic linux-headers-4.4.0-143 linux-headers-4.4.0-143-generic linux-headers-4.4.0-146 linux-headers-4.4.0-146-generic
linux-image-4.4.0-141-generic linux-image-4.4.0-143-generic linux-image-4.4.0-146-generic linux-image-extra-4.4.0-141-generic linux-modules-4.4.0-143-generic linux-modules-4.4.0-146-generic
linux-modules-extra-4.4.0-143-generic linux-modules-extra-4.4.0-146-generic linux-signed-image-4.4.0-141-generic pandoc-data
0 upgraded, 0 newly installed, 18 to remove and 19 not upgraded.
After this operation, 907 MB disk space will be freed.
और मैं सिर्फ linux*
पैकेज निकालना चाहता हूं , मैं यह कर सकता हूं:
root@fptc-rsvrd:~# apt-get autoremove -s | sed -ne 's/Remv \(linux[^[]*\)\[.*/\1/gp'
linux-headers-4.4.0-141-generic
linux-headers-4.4.0-141
linux-headers-4.4.0-143-generic
linux-headers-4.4.0-143
linux-headers-4.4.0-146-generic
linux-headers-4.4.0-146
linux-signed-image-4.4.0-141-generic
linux-image-extra-4.4.0-141-generic
linux-image-4.4.0-141-generic
linux-modules-extra-4.4.0-143-generic
linux-image-4.4.0-143-generic
linux-modules-extra-4.4.0-146-generic
linux-image-4.4.0-146-generic
linux-modules-4.4.0-143-generic
linux-modules-4.4.0-146-generic
तो यहाँ से, सरल से xargs
कमांड-लाइन तर्क के माध्यम से इन्हें पास करना आसान है apt-get remove -y
:
apt-get autoremove -s \
| sed -ne 's/Remv \(linux[^[]*\)\[.*/\1/gp' \
| xargs apt-get remove -y
आम तौर पर उपयोग करते समय xargs
, मैं तर्कों में रिक्त स्थान (उदाहरण के लिए find ... -print0 | xargs -0 ...
) की रक्षा करता हूं , लेकिन चूंकि पैकेज के नामों में स्थान नहीं है, इसलिए मैं नईलाइन-सीमांकित तर्कों का उपयोग करने में सहज हूं।
(मुझे लगता है कि यह अन्य परिस्थितियां हैं, यह एक पकड़ को "चिह्नित" करने के लिए अधिक उपयुक्त होगा, पैकेजों को बंद करना होगा। यह भी regexes के साथ किया जा सकता है और xargs
, लेकिन शायद स्थिति इंजीनियरिंग से अधिक है।)