Как установить комментарий для папки с помощью Bash. (Или Applescript)
Следующий пример не работает:
osascript -e "tell application \"Finder\" to set comments of alias POSIX file \"$folder\" to \"This is a spotlight comment\"
Как установить комментарий для папки с помощью Bash. (Или Applescript)
Следующий пример не работает:
osascript -e "tell application \"Finder\" to set comments of alias POSIX file \"$folder\" to \"This is a spotlight comment\"
Я изменил этот ответ, чтобы он был функцией, которую вы можете определить в вашем ~/.bash_profile
и, похоже, он работает для файлов или папок:
makecomment(){
osascript -e 'on run {f, c}' -e 'tell app "Finder" to set comment of (POSIX file f as alias) to c' -e end "$1" "$2"
}
ИСПОЛЬЗОВАНИЕ:
makecomment foldername "My comment"