hi there, how can i make ksh leave the '#' alone in the url i am passing as a parameter?
$ curl -v "http://example.com/test#1" > GET /test HTTP/1.1 ^^^^^ $ curl -v 'http://example.com/test#1' > GET /test HTTP/1.1 ^^^^^ $ curl -v "http://example.com/test\#1" > GET /test\ HTTP/1.1 ^^^^^ $ curl -v 'http://example.com/test\#1' > GET /test\ HTTP/1.1 ^^^^^ -f -- i'm so modest i pull the curtains before changing my mind.