5 lines
		
	
	
		
			157 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			5 lines
		
	
	
		
			157 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| # find all links in the fs, that link to a specific target:
 | |
| find / -type l -exec readlink -nf {} ';' -exec echo " -> {}" ';' | grep "/bin/bash"
 |