टर्मिनल के माध्यम से एक फ़ोल्डर को टैग करना संभव है?


11

क्या टर्मिनल कमांड के माध्यम से मावेरिक्स में फ़ाइल या फ़ोल्डर को टैग करना संभव है?


1
हाँ यही है। टैग xattr का उपयोग करके संग्रहीत / पढ़े जाते हैं और com.apple.metadata में संग्रहीत किए जाते हैं: _kMDItemUserTags। क्या आप एक अधिक विशिष्ट प्रश्न में संपादित करना चाहते हैं (शायद एक विशेष फ़ाइल के लिए "फू" नामक टैग को आसानी से सेट करने के लिए अजगर का उपयोग करें) या तकनीकी रूप से संभव है तो क्या आप उत्सुक हैं?
bmike

संबंधित सवाल यहाँ
Asmus

1
@ धन्यवाद धन्यवाद, हाँ मैं प्रोग्राम को संपादित करना चाहता हूं: पी
गेदेंकेनबेल

जवाबों:


23

आप xattr का उपयोग कर सकते हैं। यह फाइल 1 से फाइल 2 तक के टैग को कॉपी करता है:

xattr -wx com.apple.metadata:_kMDItemUserTags "$(xattr -px com.apple.metadata:_kMDItemUserTags file1)" file2;xattr -wx com.apple.FinderInfo "$(xattr -px com.apple.FinderInfo file1)" file2

टैग्स को संपत्ति सूची में स्ट्रिंग्स के एकल सरणी के रूप में संग्रहीत किया जाता है:

$ xattr -p com.apple.metadata:_kMDItemUserTags file3|xxd -r -p|plutil -convert xml1 - -o -
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<array>
    <string>Red
6</string>
    <string>new tag</string>
    <string>Orange
7</string>
    <string>Yellow
5</string>
    <string>Green
2</string>
    <string>Blue
4</string>
    <string>Purple
3</string>
    <string>Gray
1</string>
</array>
</plist>

यदि com.apple.FinderInfo में kColor ध्वज अप्रचलित है, तो फ़ाइंडर रंगों के लिए मंडलियां नहीं दिखाता है। यदि kColor ध्वज नारंगी पर सेट है और फ़ाइल में लाल टैग है, तो खोजक लाल और नारंगी दोनों हलकों को दिखाता है। आप AppleScript के साथ kColor ध्वज सेट कर सकते हैं:

xattr -w com.apple.metadata:_kMDItemUserTags '("Red\n6","new tag")' ~/desktop/file4;osascript -e 'on run {a}' -e 'tell app "Finder" to set label index of (POSIX file a as alias) to item 1 of {2, 1, 3, 6, 4, 5, 7}' -e end ~/desktop/file4

xattr -p com.apple.FinderInfo file|head -n1|cut -c28-29केलोर ध्वज के लिए प्रयुक्त बिट्स के मूल्य को प्रिंट करता है। रेड सी है, नारंगी ई है, पीला ए है, हरा 4 है, नीला 8 है, मैजेंटा 6 है, और ग्रे 2 है। 1 मान को जोड़ने वाला झंडा ओएस एक्स में उपयोग नहीं किया जाता है।

संपादित करें: आप टैग का उपयोग भी कर सकते हैं :

tag -l file # list
tag -a tag1 file # add
tag -s red,blue file # set
tag -r \* file # remove all tags
tag -f green # find all files with the green tag
tag -f \* # find all files with tags
tag -m red * # match (print files in * that have the red tag)

टैग के साथ स्थापित किया जा सकता brew install tagया sudo port install tag

$ tag -h
tag - A tool for manipulating and querying file tags.
  usage:
    tag -a | --add <tags> <file>...     Add tags to file
    tag -r | --remove <tags> <file>...  Remove tags from file
    tag -s | --set <tags> <file>...     Set tags on file
    tag -m | --match <tags> <file>...   Display files with matching tags
    tag -l | --list <file>...           List the tags on file
    tag -f | --find <tags>              Find all files with tags
  <tags> is a comma-separated list of tag names; use * to match/find any tag.
  additional options:
        -v | --version      Display version
        -h | --help         Display this help
        -n | --name         Turn on filename display in output (default)
        -N | --no-name      Turn off filename display in output (list)
        -t | --tags         Turn on tags display in output (find, match)
        -T | --no-tags      Turn off tags display in output (list)
        -g | --garrulous    Display tags each on own line (list, find, match)
        -G | --no-garrulous Display tags comma-separated after filename (default)
        -H | --home         Find tagged files only in user home directory
        -L | --local        Find tagged files only in home + local filesystems (default)
        -R | --network      Find tagged files in home + local + network filesystems
        -0 | --nul          Terminate lines with NUL (\0) for use with xargs -0

6

शुद्ध बैश कमांड के जरिए टैग में हेरफेर करना संभव है। एक 3 पार्टी "टैग" उपयोग के लिए कोई ज़रूरत नहीं है।

यह कमांड फ़ाइल के सभी टैग ($ src) सूचीबद्ध करता है:

xattr -px com.apple.metadata:_kMDItemUserTags "$src" | \
    xxd -r -p - - | plutil -convert json -o - - | sed 's/[][]//g' | tr ',' '\n'

और यहां बताया गया है कि आप फ़ाइल ($ src) में टैग ($ newtag) कैसे जोड़ सकते हैं:

xattr -wx com.apple.metadata:_kMDItemUserTags \
    "$(xattr -px com.apple.metadata:_kMDItemUserTags "$src" | \
    xxd -r -p - - | plutil -convert json -o - - | sed 's/[][]//g' | tr ',' '\n' | \
    (cat -; echo \"$newtag\") | sort -u | grep . | tr '\n' ',' | sed 's/,$//' | \
    sed 's/\(.*\)/[\1]/' | plutil -convert binary1 -o - - | xxd -p - -)" "$src"

यहां एक छोटी सी शेल स्क्रिप्ट है जो "टैग" फ़ंक्शन का निर्यात करती है। उपयोग:

tags <file>
Lists all tags of a file

tags -add <tag> <file>
Adds tag to a file

समारोह को हटाने के साथ-साथ समर्थन को आसानी से बढ़ाया जा सकता है।

tags() {
    # tags system explained: http://arstechnica.com/apple/2013/10/os-x-10-9/9/
    local src=$1
    local action="get"

    if [[ $src == "-add" ]]; then
        src=$3
        local newtag=$2
        local action="add"
    fi

    # hex -> bin -> json -> lines
    local hexToLines="xxd -r -p - - | plutil -convert json -o - - | sed 's/[][]//g' | tr ',' '\n'"

    # lines -> json -> bin -> hex
    local linesToHex="tr '\n' ',' | echo [\$(sed 's/,$//')] | plutil -convert binary1 -o - - | xxd -p - -"

    local gettags="xattr -px com.apple.metadata:_kMDItemUserTags \"$src\" 2> /dev/null | $hexToLines | sed 's/.*Property List error.*//'"

    if [[ $action == "get" ]]; then
        sh -c "$gettags"
    else
        local add="(cat -; echo \\\"$newtag\\\") | sort -u"
        local write="xattr -wx com.apple.metadata:_kMDItemUserTags \"\$($gettags | $add | grep . | $linesToHex)\" \"$src\""

        sh -c "$write"
    fi
}
export -f tags

Yikes, उन लंबी लाइनें हैं! मैंने एक रैपिंग एडिट का सुझाव दिया। मुझे लगता है कि वे छोटे शेल स्क्रिप्ट के रूप में बेहतर हो सकते हैं, हालांकि।
जिग

xattr -wxजब फ़ाइल पर पहले से कोई टैग नहीं है तो आपकी कमांड विफल हो जाती है। इससे कैसे बचा जा सकता है?
user3932000

नवीनतम ओएस एक्स (एल कैप 10.11.4) में कुछ समस्या है। xattr -px …मेरे किसी एक फोल्डर पर टैग दिखाने के लिए आपके द्वारा दी गई कमांड चलाने से निम्नलिखित आउटपुट मिलता है: "language:Objective-C\n2"(newline) "platform:iOS\n4"ईमानदारी से, यदि आप अपने मध्यम-जटिल शेल कोड को बैश फ़ंक्शन में लपेटने जा रहे हैं, तो आप टैग के प्रयास को दोहरा रहे हैं , जिसमें समुदाय को अच्छी तरह से बनाए रखने का लाभ है।
स्लिप डी। थॉम्पसन

@ SlippD.Thompson, कैसे एक संकलित उपकरण के "प्रयास दोहराव" के साथ करने के लिए कुछ भी करने के लिए एक bash फ़ंक्शन में शेल कोड को लपेट रहा है ? ... आपको इसके लिए एक प्रो-कॉन विश्लेषण देने की आवश्यकता नहीं है? ' टैग ', आप जो चाहें पसंद करते हैं। इस समाधान का कथन यह है कि आपको वांछित कार्यक्षमता प्राप्त करने के लिए तीसरे पक्ष के उपकरण की आवश्यकता नहीं है
मेर्टन स्री
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.