मैं टर्मिनल से कचरा कैसे खाली कर सकता हूं?


20

मैं टर्मिनल से कचरा कैसे खाली कर सकता हूं?

जवाबों:


23

एक और उपाय यह होगा कि AppleScript फॉलिंग कोड युक्त AppleScript बनाए

tell application "Finder"
    empty the trash
end tell

emptytrashउदाहरण के लिए इसे सहेजें और इसके माध्यम से निष्पादित करेंopen emptytrash.app

या इससे भी बेहतर (क्रिस द्वारा सुझाए गए अनुसार) - निष्पादित करें:

osascript -e 'tell app "Finder" to empty'

चूंकि कचरा एक खोजक चीज है, यह लंबे समय में अधिक संगत होना चाहिए।


6
सीधे कमांड लाइन से: osascript -e 'tell app "Finder" to empty'(हालांकि आप हर बार वाक्य रचना को सही तरीके से प्राप्त करने से बचने के लिए शेल स्क्रिप्ट में रखना चाह सकते हैं)।
क्रिस जॉन्सन

11

कचरा वास्तव में उपयोगकर्ता के नाम के फ़ोल्डर में छिपा हुआ फ़ोल्डर है .Trash

यदि आप इसकी सामग्री हटाते हैं, तो आप कचरा खाली कर देते हैं। आप उपयोग कर सकते हैं

rm -rf ~/.Trash/*

बस इसके साथ सावधान रहें ताकि आप कुछ और न हटाएं;)


8
लेकिन यह डिलीट नहीं होगा। माउंटेड मीडिया / नेटवर्क वॉल्यूम पर दबाएं।
मपसॉव

@mspasov, कई मामलों में जो एक विशेषता है, बग नहीं। किसी भी मामले में यह भी जवाब देता है, "मैं अपने बाहरी संस्करणों को बिना हटाए सिर्फ अपने स्थानीय कूड़ेदान को कैसे खाली कर सकता हूं?" ;)
वाइल्डकार्ड


3

यदि आपने Homebrew स्थापित किया है, तो आप आसानी से टाइप करके कचरा स्थापित कर सकते हैं :

brew install trash

फिर, कचरा खाली करने के लिए, आपको केवल कमांड लाइन से निम्नलिखित टाइप करना होगा:

trash -e

यह सॉफ्टवेयर का एक बहुत छोटा टुकड़ा है।

$ trash
usage: trash [-ulesv] <file> [<file> ...]

  Move files/folders to the trash.

  Options to use with <file>:

  -a  Use system API for trashing files instead of asking
      Finder to do it. (Faster, but the 'put back' feature
      in the Finder trash will not work if files are trashed
      using this method.) Finder is still used for trashing
      files you have no access rights for.
  -v  Be verbose (show files as they are trashed, or if
      used with the -l option, show additional information
      about the trash contents)

  Stand-alone options (to use without <file>):

  -u  Check for updates (and optionally auto-update self)
  -l  List items currently in the trash (add the -v option
      to see additional information)
  -e  Empty the trash (asks for confirmation)
  -s  Securely empty the trash (asks for confirmation)

  Options supported by `rm` are silently accepted.

Version 0.8.5
Copyright (c) 2010 Ali Rantakari, http://hasseg.org/trash
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.