Skip to content

Instantly share code, notes, and snippets.

@bg5sbk
Created April 4, 2014 13:45
Show Gist options
  • Save bg5sbk/9974997 to your computer and use it in GitHub Desktop.
Save bg5sbk/9974997 to your computer and use it in GitHub Desktop.
Disable or enable spotlight on Mac OS
#!/bin/sh
if [ ! $# == 1 ]; then
echo "How To Use:" >&2
echo " ./spotlight.sh [load|unload]" >&2
exit
elif [ ! $1 == 'load' ] && [ ! $1 == 'unload' ]; then
echo "How To Use:" >&2
echo " ./spotlight.sh [load|unload]" >&2
exit
fi
sudo launchctl $1 -w /System/Library/LaunchDaemons/com.apple.metadata.mds.plist
echo "Please reboot to take effect"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment