मैं टर्मिनल से कचरा कैसे खाली कर सकता हूं?
मैं टर्मिनल से कचरा कैसे खाली कर सकता हूं?
जवाबों:
एक और उपाय यह होगा कि AppleScript फॉलिंग कोड युक्त AppleScript बनाए
tell application "Finder"
empty the trash
end tell
emptytrash
उदाहरण के लिए इसे सहेजें और इसके माध्यम से निष्पादित करेंopen emptytrash.app
या इससे भी बेहतर (क्रिस द्वारा सुझाए गए अनुसार) - निष्पादित करें:
osascript -e 'tell app "Finder" to empty'
चूंकि कचरा एक खोजक चीज है, यह लंबे समय में अधिक संगत होना चाहिए।
कचरा वास्तव में उपयोगकर्ता के नाम के फ़ोल्डर में छिपा हुआ फ़ोल्डर है .Trash
यदि आप इसकी सामग्री हटाते हैं, तो आप कचरा खाली कर देते हैं। आप उपयोग कर सकते हैं
rm -rf ~/.Trash/*
बस इसके साथ सावधान रहें ताकि आप कुछ और न हटाएं;)
कमांड लाइन से ट्रैश के प्रबंधन के लिए विभिन्न कमांड लाइन टूल्स की समीक्षा:
http://hasseg.org/blog/post/406/trash-files-from-the-os-x-command-line/
यदि आपने 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
osascript -e 'tell app "Finder" to empty'
(हालांकि आप हर बार वाक्य रचना को सही तरीके से प्राप्त करने से बचने के लिए शेल स्क्रिप्ट में रखना चाह सकते हैं)।