Merge pull request #32472 from lukashass/kubectl-install-sh
Use cat instead of shell built-in to read checksum
This commit is contained in:
@@ -52,7 +52,7 @@ For example, to download version {{< param "fullversion" >}} on Linux, type:
|
|||||||
Validate the kubectl binary against the checksum file:
|
Validate the kubectl binary against the checksum file:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
echo "$(<kubectl.sha256) kubectl" | sha256sum --check
|
echo "$(cat kubectl.sha256) kubectl" | sha256sum --check
|
||||||
```
|
```
|
||||||
|
|
||||||
If valid, the output is:
|
If valid, the output is:
|
||||||
@@ -212,7 +212,7 @@ Below are the procedures to set up autocompletion for Bash, Fish, and Zsh.
|
|||||||
Validate the kubectl-convert binary against the checksum file:
|
Validate the kubectl-convert binary against the checksum file:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
echo "$(<kubectl-convert.sha256) kubectl-convert" | sha256sum --check
|
echo "$(cat kubectl-convert.sha256) kubectl-convert" | sha256sum --check
|
||||||
```
|
```
|
||||||
|
|
||||||
If valid, the output is:
|
If valid, the output is:
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ The following methods exist for installing kubectl on macOS:
|
|||||||
Validate the kubectl binary against the checksum file:
|
Validate the kubectl binary against the checksum file:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
echo "$(<kubectl.sha256) kubectl" | shasum -a 256 --check
|
echo "$(cat kubectl.sha256) kubectl" | shasum -a 256 --check
|
||||||
```
|
```
|
||||||
|
|
||||||
If valid, the output is:
|
If valid, the output is:
|
||||||
@@ -205,7 +205,7 @@ Below are the procedures to set up autocompletion for Bash, Fish, and Zsh.
|
|||||||
Validate the kubectl-convert binary against the checksum file:
|
Validate the kubectl-convert binary against the checksum file:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
echo "$(<kubectl-convert.sha256) kubectl-convert" | shasum -a 256 --check
|
echo "$(cat kubectl-convert.sha256) kubectl-convert" | shasum -a 256 --check
|
||||||
```
|
```
|
||||||
|
|
||||||
If valid, the output is:
|
If valid, the output is:
|
||||||
|
|||||||
Reference in New Issue
Block a user