7 lines
106 B
Bash
Executable file
7 lines
106 B
Bash
Executable file
#!/bin/rc
|
|
|
|
if(! ~ $#* 1) {
|
|
echo 'usage: hdrs file.9gz' >[1=2]
|
|
exit usage
|
|
}
|
|
gunzip < $1 | disk/mkext -h
|