Skip to content

Commit cea2553

Browse files
authored
Replacing awk with another character removal using tr
1 parent e52922f commit cea2553

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/docs/api-shield/security/mtls/configure.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ not (cf.tls_client_auth.cert_verified and cf.tls_client_auth.cert_issuer_ski eq
5252
To obtain the issuer Subject Key Identifier (SKI) hash of a client certificate stored in the `mtls.crt` file, you can run the following OpenSSL command:
5353

5454
```sh
55-
openssl x509 -noout -ext authorityKeyIdentifier -in mtls.crt | tail -n1 | tr -d ':' | awk '{$1=$1};1'
55+
openssl x509 -noout -ext authorityKeyIdentifier -in mtls.crt | tail -n1 | tr -d ': '
5656
```
5757

5858
```txt output

0 commit comments

Comments
 (0)