Skip to content

Commit 211276e

Browse files
author
Patrick M
committed
fix: curl pipe bash
1 parent 8e52811 commit 211276e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/data/blog/2023/adding-figurine-to-login.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ To do this quickly and use the hostname for the login message, you can use thise
1616
> Don't just take my word for it. Always inspect the code that will be running on your machines, especially from an untrusted and unsigned source.
1717
1818
```bash
19-
curl https://gist.githubusercontent.com/binarypatrick/2e33d8d3c79210dc74077627cb0deb9c/raw/ | sudo bash
19+
curl -s https://gist.githubusercontent.com/binarypatrick/2e33d8d3c79210dc74077627cb0deb9c/raw/ | sudo bash
2020
```
2121

2222
![Login example of figurine displaying the hostname](../../../assets/images/2023/adding-figurine-login-message/login-example.png)

src/data/blog/2023/using-prune-to-manage-archives.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To install Prune you can go to the [releases page](https://github.com/BinaryPatr
1818
> Don't just take my word for it. Always inspect the code that will be running on your machines, especially from an untrusted and unsigned source.
1919
2020
```bash
21-
curl https://raw.githubusercontent.com/BinaryPatrick/Prune/main/scripts/install-linux-x64.sh | sudo bash
21+
curl -s https://raw.githubusercontent.com/BinaryPatrick/Prune/main/scripts/install-linux-x64.sh | sudo bash
2222
```
2323

2424
## Usage

src/data/blog/2025/systemd-remounting-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,5 +106,5 @@ All of this has been scripted to make it more convenient.
106106
> Don't just take my word for it. Always inspect the code that will be running on your machines, especially from an untrusted and unsigned source.
107107
108108
```bash
109-
curl https://gist.githubusercontent.com/binarypatrick/d96331537d2976c3a05ce335b00697ca/raw | sudo bash -s -- "some_share_name"
109+
curl -s https://gist.githubusercontent.com/binarypatrick/d96331537d2976c3a05ce335b00697ca/raw | sudo bash -s -- "some_share_name"
110110
```

0 commit comments

Comments
 (0)