├── .cirrus.yml ├── .github └── FUNDING.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md └── src ├── args.rs ├── clipboard.rs ├── clipboard └── providers.rs ├── grab.rs └── main.rs /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wezm/git-grab/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: wezm 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wezm/git-grab/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wezm/git-grab/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wezm/git-grab/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wezm/git-grab/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wezm/git-grab/HEAD/README.md -------------------------------------------------------------------------------- /src/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wezm/git-grab/HEAD/src/args.rs -------------------------------------------------------------------------------- /src/clipboard.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wezm/git-grab/HEAD/src/clipboard.rs -------------------------------------------------------------------------------- /src/clipboard/providers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wezm/git-grab/HEAD/src/clipboard/providers.rs -------------------------------------------------------------------------------- /src/grab.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wezm/git-grab/HEAD/src/grab.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wezm/git-grab/HEAD/src/main.rs --------------------------------------------------------------------------------