servers/hgfs/hgfs_server => servers/hgfs servers/hgfs/libhgfs => lib/libhgfs servers/rs/service => commands/service drivers/memory/memory_driver => drivers/memory drivers/memory/ramdisk => drivers/ramdisk
		
			
				
	
	
		
			12 lines
		
	
	
		
			403 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			403 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
PATH=/bin:/sbin:/usr/bin:/usr/sbin
 | 
						|
sed -n '1,/@DEV/p' <proto  | grep -v @DEV@
 | 
						|
(
 | 
						|
cd /dev
 | 
						|
ls -aln | grep '^[bc]' | egrep -v ' (fd1|fd0p|tcp|eth|ip|udp|tty[pq]|pty)' | grep -v 13, | \
 | 
						|
sed	-e 's/^[bc]/& /' -e 's/rw-/6/g' -e 's/r--/4/g' \
 | 
						|
	-e 's/-w-/2/g'  -e 's/---/0/g' | \
 | 
						|
awk '{ printf "\t\t%s %s--%s %d %d %d %d \n", $11, $1, $2, $4, $5, $6, $7; }'
 | 
						|
)
 | 
						|
sed -n '/@DEV/,$p' <proto  | grep -v @DEV@
 |