7 lines
		
	
	
	
		
			167 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
		
		
			
		
	
	
			7 lines
		
	
	
	
		
			167 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| 
								 | 
							
								#!/bin/bash
							 | 
						||
| 
								 | 
							
								for lib in lib{gmp,mpfr,mpc}.la; do
							 | 
						||
| 
								 | 
							
								  echo $lib: $(if find /usr/lib* -name $lib|
							 | 
						||
| 
								 | 
							
								               grep -q $lib;then :;else echo not;fi) found
							 | 
						||
| 
								 | 
							
								done
							 | 
						||
| 
								 | 
							
								unset lib
							 |