È possibile taggare una cartella tramite terminale?


11

È possibile taggare un file o una cartella in mavericks tramite il comando terminale?


1
Sì. I tag vengono memorizzati / letti utilizzando xattr e memorizzati in com.apple.metadata: _kMDItemUserTags. Vuoi modificare una domanda più specifica (forse usa python per impostare facilmente un tag chiamato "pippo" su un file specifico) o sei solo curioso se è tecnicamente possibile?
bmike

domanda correlata qui
Asmus,

1
@bmike grazie, sì, voglio modificare a livello di programmazione: P
GedankenNebel

In Stack Overflow, con una mia risposta: come posso aggiungere "tag" OS X ai file a livello di codice? (2013-11-01)
Graham Perrin,

Risposte:


23

Puoi usare xattr. Questo copia i tag da file1 a file2:

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

I tag sono memorizzati in un elenco di proprietà come un singolo array di stringhe:

$ 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>

Se il flag kColor in com.apple.FinderInfo non è impostato, Finder non mostra i cerchi per i colori. Se il flag kColor è impostato su arancione e il file ha il tag rosso, Finder mostra sia i cerchi rossi che quelli arancioni. Puoi impostare il flag kColor con AppleScript:

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-29stampa il valore dei bit utilizzati per il flag kColor. Il rosso è C, l'arancione è E, il giallo è A, il verde è 4, il blu è 8, il magenta è 6 e il grigio è 2. Il flag che aggiungerebbe 1 ai valori non viene utilizzato in OS X.

Modifica: puoi anche usare il tag :

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)

il tag può essere installato con brew install tago 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

È possibile manipolare i tag tramite semplici comandi bash. Non è necessario un util "tag" di terze parti.

Questo comando elenca tutti i tag di un file ($ src):

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

Ed ecco come aggiungere un tag ($ newtag) a un file ($ src):

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"

Ecco un piccolo script di shell che esporta una funzione "tag". Uso:

tags <file>
Lists all tags of a file

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

La funzione potrebbe essere facilmente estesa per supportare anche la rimozione.

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, quelle sono lunghe file! Ho suggerito una modifica a capo. Penso che potrebbero essere fatti meglio come piccoli script di shell, però.
zigg

Il tuo xattr -wxcomando ha esito negativo quando il file non contiene già alcun tag. Come posso evitarlo?
user3932000,

Sembra avere qualche problema nell'ultimo OS X (El Cap 10.11.4). Eseguendo il xattr -px …comando che hai dato per mostrare i tag su una delle mie cartelle si ottiene il seguente output: "language:Objective-C\n2"(newline) "platform:iOS\n4". Onestamente, se hai intenzione di racchiudere il tuo codice shell moderatamente complesso in una funzione bash, stai quasi duplicando lo sforzo del tag , che ha il vantaggio di essere ben gestito dalla comunità.
Slipp D. Thompson,

@ SlippD.Thompson, come sta avvolgendo codice shell in una funzione di bash nulla a che fare con "la duplicazione sforzo" di uno strumento per-essere compilato? ... Non c'è bisogno di dare un'analisi pro-con per questo e ' tag ", scegli quello che ti piace. La dichiarazione di questa soluzione è che non è necessario uno strumento di terze parti per ottenere la funzionalità desiderata.
Márton Sári,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.