Yann Dirson <[EMAIL PROTECTED]> writes:

> file-18-24: file
>       tail +18 $< | head -6 > $@
> 
> (untested, there may be one-off bugs in this code)

Using 'sed' might be more straight-forward here, e.g., 

     sed -ne '3,23p;' $< > $@

That prints lines 3 thru 23.

-- 
...Adam Di Carlo..<[EMAIL PROTECTED]>...<URL:http://www.onshored.com/>

Reply via email to