この投稿で提案されている手法を採用したスクリプトを起動時に実行することができますhttps://apple.stackexchange.com/a/91759/183505
DriveAから起動する場合(外部DriveBのスポットライトインデックスを無効にする場合)は、次のコマンドを実行できます。
touch /Volumes/DriveB/.metadata_never_index
外部のDriveBから起動し、スポットライトを再度有効にしたい場合は、起動スクリプトを実行することができます。
rm /Volumes/DriveB/.metadata_never_index
リンクされた投稿には、スポットライトの除外をプログラムで変更する他の方法もリストされています。
ログイン時に起動するスクリプトを追加するいくつかの方法を次に示します。https://stackoverflow.com/questions/6442364/running-script-upon-login-mac
幸運を!
編集:bashスクリプトとplistファイルを使用する方法
最初に起動スクリプトを作成します。で作成することにしました~/script.sh
実行可能であることを確認してください chmod +x ~/script.sh
ドライブをスポットライトから隠したいOS用のスクリプト
#!/bin/bash
flagLocation="/Volumes/DriveToHide"
flagRemoved=".ney_the_index" # a new name
# if flag exists rename it.
if [ -a "$flagLocation/.metadata_never_index" ]; then
mv "$flagLocation/.metadata_never_index" "$flagLocation/$flagRemoved";
fi
ドライブのインデックスを作成するOS上のスクリプト
#!/bin/bash
flagLocation="/Volumes/DriveToHide"
flagRemoved=".ney_the_index"
if [ -a "$flagLocation/$flagRemoved" ]; then
mv "$flagLocation/$flagRemoved" "$flagLocation/.metadata_never_index"
fi
if [ ! -a "$flagLocation/$flagRemoved" ] || [ ! -a "$flagLocation/.metadata_never_index" ] ; then
touch "$flagLocation/.metadata_never_index"
fi
plistファイルを作成する ~/Library/LaunchAgents/com.user.loginscript.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.user.loginscript</string>
<key>Program</key>
<string>/Users/yourusername/script.sh</string>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
ロードおよびアンロードしてテストします。
launchctl load ~/Library/LaunchAgents/com.user.loginscript.plist