Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vclemenzi/ach
Arch user repository helper made just for fun!
https://github.com/vclemenzi/ach
archlinux aur
Last synced: about 1 month ago
JSON representation
Arch user repository helper made just for fun!
- Host: GitHub
- URL: https://github.com/vclemenzi/ach
- Owner: vclemenzi
- License: gpl-3.0
- Created: 2023-07-18T15:41:32.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-19T07:07:46.000Z (over 1 year ago)
- Last Synced: 2024-12-24T03:46:50.757Z (about 1 month ago)
- Topics: archlinux, aur
- Language: Rust
- Homepage:
- Size: 52.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ACH
Another of the many Arch User Repository helpers written in Rust.## Install Guide
Run this command:
```bash
curl https://raw.githubusercontent.com/vclemenzi/ach/main/install.sh | sudo sh
```## Usage
Its usage is very simple and basic#### Install an AUR package
Use the -S command to install a package from the AUR```bash
ach -S aur_package
```#### Remove a package
Remove an installed AUR package```bash
ach -R aur_package
```
#### Manage the cache
You can get a list of cached directories using the following command```bash
ach -C
```You can clear a file or more from the cache with this command
```bash
ach -Cr package_in_cache
```You can clear **all** the cache with this command
```bash
ach -Cc
```#### Get information about a package
Get information about a package using this command, keep in mind that the package must be installed and found in the cache```bash
ach -Qi aur_package
```