https://github.com/chefzander/installerfileformat
A Installer System Similar To GIT
https://github.com/chefzander/installerfileformat
Last synced: 11 months ago
JSON representation
A Installer System Similar To GIT
- Host: GitHub
- URL: https://github.com/chefzander/installerfileformat
- Owner: ChefZander
- Created: 2021-09-04T21:35:47.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-09-04T21:54:48.000Z (almost 5 years ago)
- Last Synced: 2025-05-18T20:37:49.534Z (about 1 year ago)
- Language: Java
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# InstallerFileFormat
A Installer System Similar To GIT
# Usage
### Downloading
```
java -f:
java -jar iff.jar -f:https://github.com/ChefZander/repo/raw/main/example.iff
```
If the URL is not valid, it will throw an error.
### The IFF Format
The IIF Format is very simple.
```
=;
```
You can put multiple file declarations on one line:
```
a=https://example.com/a.txt;c=https://example.com/b.txt;
```
filename: The Name of the file that will later be saved on disk
url to file to download: URL to file. The contents of this file will be copied byte-by-byte into the filename file
After the url put a ; to end the command. This is required to make multiple files per line possible.
Example: [example.iff](https://github.com/ChefZander/repo/blob/main/example.iff)
# License
You can use this program for free, always.
If you want to edit the code, or distribute your own modded version then:
- It has to be open source (you need to share your code)
- Credit Me (include a link to this repo)
- It has to be free (you cannot sell the source-code or builds)