mirror of
				https://github.com/dcarrillo/prezto.git
				synced 2025-11-04 06:19:09 +00:00 
			
		
		
		
	This only changes references in text for human consumption. It leaves out renaming paths because that can cause breaking changes. Related issue https://github.com/sorin-ionescu/prezto/issues/1449.
		
			
				
	
	
		
			18 lines
		
	
	
		
			385 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			385 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#
 | 
						|
# Displays the macOS download history.
 | 
						|
#
 | 
						|
# Authors:
 | 
						|
#   Sorin Ionescu <sorin.ionescu@gmail.com>
 | 
						|
#
 | 
						|
 | 
						|
# function osx-ls-download-history {
 | 
						|
 | 
						|
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
 | 
						|
 | 
						|
# }
 |