fixed function namescape

This commit is contained in:
Mark Tareshawty 2013-01-19 00:00:32 -05:00
commit 068d0d0075

View file

@ -154,3 +154,12 @@ function trash() {
IFS=$temp_ifs
}
function viewDownloadsList() {
sqlite3 ~/Library/Preferences/com.apple.LaunchServices.QuarantineEventsV*\
'select LSQuarantineDataURLString from LSQuarantineEvent'
}
function removeDownloadList() {
sqlite3 ~/Library/Preferences/com.apple.LaunchServices.QuarantineEventsV*\
'delete from LSQuarantineEvent'
}