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