In article <1462 at eastman.UUCP> gerwitz at kodak.com (Paul Gerwitz) writes:
>I seem to be having trouble using expr [in ksh]. The following dies:
>
> test=`expr `tail +3 file` + 1`
Write it this way:
test=$(expr $(tail +3 file) + 1)
--tom