vote up 1 vote down star

Hi,

I'm using the openssl utility of debian in order to create a certificate.

The certificate paramemters are given in a configuration file, which is made of key-value pairs.

My problem is that I want one of the values to include the number sign (#). But openssl handles this sign as a beginning of comment, i.e. if my value is val#1, openssl uses only val as the value, and ignores the # and every character after it until the end of the line.

Is there a way to use the # sign in a value?

Thanks,

Dikla

flag

67% accept rate

1 Answer

vote up 0 vote down check

Did you try to escape the # sign?

key = value\#with\#hash

Alternatively you can try to put double quotes around the value

key = "value#with#hash"
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.