up vote 1 down vote favorite
share [g+] share [fb]

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

link|improve this question

75% accept rate
feedback

1 Answer

up vote 0 down vote accepted

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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