-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to file structure + added README
- Loading branch information
Sam Coan
committed
May 9, 2023
1 parent
a9f9b70
commit dd0a9dc
Showing
7 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.