mirror of
				https://github.com/flynx/proxmox-utils.git
				synced 2025-11-03 21:50:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			115 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			115 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
cut -d " " -f 3,4 /var/lib/misc/dnsmasq.leases \
 | 
						|
	| sort -t "." -k 4 -n \
 | 
						|
	| sed 's/ /\t/;s/^/    /'
 | 
						|
 |