Re: HTTP header suggestion/request

Maurizio Codogno:
>
>I am surely stupid, but I wrote a short CGI script saying
>-----
>#!/bin/sh
> 
>echo Content-type: application/octet-stream
>echo Content-Disposition: attachment; filename="pippo.txt"
                                    ^^^

; is the shell statement separator.  Try

echo 'Content-Disposition: attachment; filename="pippo.txt"'

Koen.

Received on Friday, 8 November 1996 06:43:53 UTC