aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-12-08 20:03:17 -0500
committerB Stack <bgstack15@gmail.com>2020-12-08 20:22:46 -0500
commit5a19477eb69bce00512b296eeef6bc7729e87cf1 (patch)
tree69cc419fe5434033a6d73181ecead66f7a94e98a /README.md
downloadobs-dl-5a19477eb69bce00512b296eeef6bc7729e87cf1.tar.gz
obs-dl-5a19477eb69bce00512b296eeef6bc7729e87cf1.tar.bz2
obs-dl-5a19477eb69bce00512b296eeef6bc7729e87cf1.zip
initial commitHEADmaster
Diffstat (limited to 'README.md')
-rw-r--r--README.md23
1 files changed, 23 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..8e99ed0
--- /dev/null
+++ b/README.md
@@ -0,0 +1,23 @@
+# README for obs-dl.sh
+This script makes it easy to download an asset from the [Open Build Service](https://build.opensuse.org/) from cli.
+
+## Upstream
+This repository is the original: [https://gitlab.com/bgstack15/obs-dl](https://gitlab.com/bgstack15/obs-dl)
+
+## Alternatives
+Download the assets in a web browser and a login session.
+
+## How to use
+Set environment variables USERNAME and PASSWORD and then run command
+
+ ./obs-dl https://build.opensuse.org/source/home:bgstack15/freefilesync/_service:recompress:tar_scm:FreeFileSync.tar.gz?rev=9410c094a8ce7fb9df4042c405ea0c7b
+
+## Reason for existing
+My build server is headless and I don't always want to use my desktop to download a large asset just to push it up to my dev system.
+
+## Dependencies
+Bourne shell
+
+## References
+man 1 curl
+Original work.
bgstack15