22 строки
		
	
	
		
			551 B
		
	
	
	
		
			Python
		
	
	
		
			Исполняемый файл
		
	
	
	
	
			
		
		
	
	
			22 строки
		
	
	
		
			551 B
		
	
	
	
		
			Python
		
	
	
		
			Исполняемый файл
		
	
	
	
	
#!/usr/bin/python3
 | 
						|
import sqlite3
 | 
						|
import sys
 | 
						|
import config
 | 
						|
 | 
						|
dbcon = sqlite3.connect(config.DBPATH, isolation_level=None)
 | 
						|
cursor = dbcon.cursor()
 | 
						|
 | 
						|
if len(sys.argv) < 2:
 | 
						|
	print("Error: Missing search")
 | 
						|
	
 | 
						|
search=sys.argv[1:]
 | 
						|
#TODO: machien parseable
 | 
						|
for row in cursor.execute("SELECT file.path, content.page FROM file INNER JOIN content ON file.id = content.fileid INNER JOIN content_fts ON content.id = content_fts.ROWID WHERE content_fts.content MATCH ? ORDER By file.mtime ASC", (search)):
 | 
						|
	print("File:", row[0], "Page: ", row[1])
 | 
						|
dbcon.close()
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 |