How to update the value of node.counter

I would like to update the value of node.counter with the following commands:

:~/haskell$ cardano-cli node key-gen     --cold-verification-key-file node.vkey     --cold-signing-key-file node.skey     --operational-certificate-issue-counter node.counter
:~/haskell$ cat node.counter {    "type": "NodeOperationalCertificateIssueCounter",    "description": "Next certificate issue number: 0",
    "cborHex": "82005820a377023402655ec31eecb2a4f7527b649274a64095567e088c06e70e5f93fa37"
}
:~/haskell$ cardano-cli node new-counter --cold-verification-key-file node.vkey --counter-value 12 --operational-certificate-issue-counter-file node.counter
:~/haskell$ cat node.counter {    "type": "NodeOperationalCertificateIssueCounter",    "description": "",
    "cborHex": "820c5820a377023402655ec31eecb2a4f7527b649274a64095567e088c06e70e5f93fa37"
}

But as you can see when updating the value the description became empty…
Could you help me on that?

Try with nano

ahh just editing the file, you mean?

this is what you need right?

When you generate a new node.counter file, the value of the “description” key is empty until you issue a new operational certificate. Source: Issuing a New Operational Certificate - CoinCashew