Subversion Repositories planix.SVN

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
#!/bin/rc
2
 
3
if(! ~ $#* 1){
4
	echo 'usage: isventi /dev/sdC0/part' >[1=2]
5
	exit usage
6
}
7
 
8
arg=$1
9
if(! cmp -s <{dd -quiet 1 -if $arg -bs 1024 -iseek 248 |
10
	dd -quiet 1 -bs 13 -count 1} <{echo 'venti config'})
11
	exit noconfig
12
exit 0
13