Jim Meyering wrote:
>  # Test with seekable stdin; the followon process must see remaining data.
> -cat <<EOF > ${p}in.tmp
> +cat <<EOF |tr @ '\177'> ${p}in.tmp

This can be simplified to:

  tr @ '\177' <<EOF > ${p}in.tmp

Bruno


Reply via email to