Skip to content

Commit

Permalink
Update to file structure + added README
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Coan committed May 9, 2023
1 parent a9f9b70 commit dd0a9dc
Show file tree
Hide file tree
Showing 7 changed files with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# APT TOOLS

Simple tools written in C that allow shortening of `apt` commands in Debian.

## Usage

### inst:

Used to install packages using `system(sudo apt install <package>)`. This command also updates the catalog before installing using `system(sudo apt update)`.

Usage for this command is as follows:

```
sudo inst <package>
```

### updt:

Used to update the software catalog using `system(sudo apt update)`.

Usage for this command is as follows:

```
sudo updt
```

### upgr:

Used to upgrade system software using `system(sudo apt upgrade)`.

### updt:

Used to update the software catalog using `system(sudo apt update)`.

Usage for this command is as follows:


To upgrade all packages with available upgrades:
```
sudo upgr
```

To upgrade a specific package:
```
sudo upgr <package>
```


## Contributions

All contributions to this project are welcome! Please feel free to reach out if you would like to contribute!
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit dd0a9dc

Please sign in to comment.