Special characters in secrets being changed into numbers

Why does $$ being turned into 57012 in the secrets store?

Hi, when you use $$ in a shell, it expands to the PID of the shell:

❯ echo $$                   
115772

If you want to put $$ in your secret, you should escape it:

❯ echo \$\$
$$
2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.