https://github.com/anhgelus/cloud-setups
Bash scripts helping the set-up of linux servers
https://github.com/anhgelus/cloud-setups
bash script scripts server
Last synced: 7 months ago
JSON representation
Bash scripts helping the set-up of linux servers
- Host: GitHub
- URL: https://github.com/anhgelus/cloud-setups
- Owner: anhgelus
- License: mit
- Created: 2024-07-25T14:58:30.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-28T21:46:11.000Z (7 months ago)
- Last Synced: 2025-06-28T22:32:06.540Z (7 months ago)
- Topics: bash, script, scripts, server
- Language: Shell
- Homepage:
- Size: 18.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cloud Setups
Bash scripts helping the set up of linux servers.
## Usage
If you trust my scripts (thank you!), you can execute them directly without downloading them.
To do this, you juste have to copy the raw content's url of the script (e.g. https://raw.githubusercontent.com/anhgelus/cloud-setups/main/docker/rocky.sh) and execute this command:
```bash
curl | bash
```
e.g.
```bash
curl https://raw.githubusercontent.com/anhgelus/cloud-setups/main/docker/rocky.sh | bash
```
If you must set environment(s) variable(s), add them after the pipe (`|`) like this:
```bash
curl | FOO=bar bash
```
e.g.
```bash
curl https://raw.githubusercontent.com/anhgelus/cloud-setups/main/minecraft/only-java/alpine.sh | JAVA_VERSION=21 bash
```