https://github.com/swarley/copyup
Command line utility for downloading licenses
https://github.com/swarley/copyup
command-line-tool license license-generator license-management rust
Last synced: 2 months ago
JSON representation
Command line utility for downloading licenses
- Host: GitHub
- URL: https://github.com/swarley/copyup
- Owner: swarley
- License: mit
- Created: 2019-05-28T22:04:11.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-02-09T14:29:49.000Z (over 1 year ago)
- Last Synced: 2025-07-20T06:57:10.071Z (3 months ago)
- Topics: command-line-tool, license, license-generator, license-management, rust
- Language: Rust
- Size: 19.5 KB
- Stars: 7
- Watchers: 1
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# copyup
A command line tool for fetching licenses
-------------------
## Installation### From Source
```sh
git clone https://github.com/swarley/copyup
cd copyup
cargo install --path .
```### Via `cargo install`
```sh
cargo install copyup
```### Precompiled package or binary
Obtain the file relevant to you from [releases](https://github.com/swarley/copyup/releases)
-------------------
## Usage
```sh
# download the MIT license to `LICENSE'
copyup mit# output to stdout
copyup gpl-3.0 -s# specify output path
copyup mit -o MIT.license# view a list of all available licenses
copyup -l
```Licenses names are all based on SPDX identifiers and are not case sensitive.
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/swarley/copyup.
## License
The app is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).