Sorin Ionescu
11 years ago
3 changed files with 28 additions and 0 deletions
@ -0,0 +1,13 @@
@@ -0,0 +1,13 @@
|
||||
# |
||||
# Displays the Mac OS X download history. |
||||
# |
||||
# Authors: |
||||
# Sorin Ionescu <sorin.ionescu@gmail.com> |
||||
# |
||||
|
||||
local db |
||||
for db in ~/Library/Preferences/com.apple.LaunchServices.QuarantineEventsV*; do |
||||
if grep -q 'LSQuarantineEvent' < <(sqlite3 "$db" .tables); then |
||||
sqlite3 "$db" 'SELECT LSQuarantineDataURLString FROM LSQuarantineEvent' |
||||
fi |
||||
done |
@ -0,0 +1,13 @@
@@ -0,0 +1,13 @@
|
||||
# |
||||
# Deletes the Mac OS X download history. |
||||
# |
||||
# Authors: |
||||
# Sorin Ionescu <sorin.ionescu@gmail.com> |
||||
# |
||||
|
||||
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 |
Loading…
Reference in new issue