2014-02-02 20:30:27 -05:00
|
|
|
#
|
|
|
|
# Deletes the Mac OS X download history.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
2017-07-06 16:01:26 -07:00
|
|
|
# function osx-rm-download-history {
|
|
|
|
|
2014-02-02 20:30:27 -05:00
|
|
|
local db
|
|
|
|
for db in ~/Library/Preferences/com.apple.LaunchServices.QuarantineEventsV*; do
|
|
|
|
if grep -q 'LSQuarantineEvent' < <(sqlite3 "$db" .tables); then
|
|
|
|
sqlite3 "$db" 'DELETE FROM LSQuarantineEvent; VACUUM'
|
|
|
|
fi
|
|
|
|
done
|
2017-07-06 16:01:26 -07:00
|
|
|
|
|
|
|
# }
|