https://github.com/noam-alum/jetbackup5api-bash-integration
JetBackup5API-Bash-Library is a Bash library that provides full access to the JetBackup 5 API.
https://github.com/noam-alum/jetbackup5api-bash-integration
automation bash bash-lib bash-library bash-script ci-cd cicd devops jb5api jetbackup jetbackup5 jetbackup5api
Last synced: 9 months ago
JSON representation
JetBackup5API-Bash-Library is a Bash library that provides full access to the JetBackup 5 API.
- Host: GitHub
- URL: https://github.com/noam-alum/jetbackup5api-bash-integration
- Owner: Noam-Alum
- Created: 2025-02-25T10:26:18.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-03T17:35:37.000Z (about 1 year ago)
- Last Synced: 2025-03-03T18:27:30.218Z (about 1 year ago)
- Topics: automation, bash, bash-lib, bash-library, bash-script, ci-cd, cicd, devops, jb5api, jetbackup, jetbackup5, jetbackup5api
- Language: Shell
- Homepage:
- Size: 4.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JetBackup5API Bash integration

JetBackup5API-Bash-Library is a Bash library that provides full access to the [JetBackup 5 API](https://docs.jetbackup.com/v5.3/api/).

### How to use
**You can either source via `curl`:**
```bash
#!/bin/bash
source <(curl -LS "https://raw.githubusercontent.com/Noam-Alum/JetBackup5API-Bash-Integration/refs/heads/main/jb5_integration.bash")
jb5api::listAccounts --request '.data.accounts[-1].username'
.
.
```
**Or download it and source directly:**
```bash
#!/bin/bash
source jb5_integration.bash
jb5api::listAccounts --request '.data.accounts[-1].username'
.
.
```

### Simple example of usage:

Click here for full documentation:
[](docs/README.md)
---
> [!TIP]
> Click [here](https://docs.jetbackup.com/v5.3/api/) for JetBackup5APIs documentation.