6 lines
		
	
	
	
		
			103 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			103 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/sh
 | 
						|
FILE=/tmp/`dbus-uuidgen`.png
 | 
						|
scrot -s $FILE
 | 
						|
tesseract $FILE - --dpi 150 | xclip -i
 | 
						|
rm $FILE
 | 
						|
 |