123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- '\" t
- .TH "YAY" "8" "22/01/2017" "yay" "yay Manual"
- .nh
- .ad l
- .SH "NAME"
- yay \- AUR Helper written in go.
- .SH "SYNOPSIS"
- .sp
- \fIyay\fR <operation> [options] [packages]
- .SH "DESCRIPTION"
- .sp
- yay is a pacman wrapper with AUR support. It passes options to makepkg and pacman after resolving packages to install/upgrade.
- .SH "OPERATIONS"
- .PP
- \fB\-Cd\fR
- .RS 4
- Remove uneeded dependencies\&.
- .RE
- .PP
- \fB\-G\fR
- .RS 4
- Downloads PKGBUILD from ABS or AUR.
- .RE
- .PP
- \fB\-Qstats\fR
- .RS 4
- Displays information about installed packages and system health. If there are orphaned or out-of-date packages, warnings will be displayed\&.
- .RE
- .PP
- \fB\-Ss\fR
- .RS 4
- Search for package in repositories and AUR\&.
- .RE
- .PP
- \fB\-Si\fR
- .RS 4
- Show information for a package in the repositories or AUR\&.
- .RE
- .PP
- \fB\-Syu\fR
- .RS 4
- Upgrade packages from the repositories and the AUR\&.
- .RE
- .PP
- \fB\-h, \-\-help\fR
- .RS 4
- Show yay usage\&.
- .RE
- .PP
- \fB<NO OPERATION>\fR
- .RS 4
- Displays menu for package install selection (yogurt mode)\&.
- .RE
- .PP
- All other operations will be passed to pacman\&.
- .PP
- .SH "OPTIONS"
- .PP
- \fB\-\-topdown\fR
- .RS 4
- Display repository packages first and then AUR packages\&.
- .RE
- .PP
- \fB\-\-bottomup\fR
- .RS 4
- Show AUR packages first and then repository packages\&.
- .RE
- .PP
- \fB\-\-noconfirm\fR
- .RS 4
- No user intervention needed unless a package conflict happens. This option will be passed to pacman and makepkg\&.
- .RE
- .PP
- All other options will be passed to pacman\&.
- .PP
- .SH "EXAMPLES"
- .sp
- .RS 4
- .ie n \{\
- \h'-04'\(bu\h'+03'\c
- .\}
- .el \{\
- .sp -1
- .IP \(bu 2.3
- .\}
- Sync and update packages from repository and AUR:
- yay \-Syu
- .RE
- .sp
- .RS 4
- .ie n \{\
- \h'-04'\(bu\h'+03'\c
- .\}
- .el \{\
- .sp -1
- .IP \(bu 2.3
- .\}
- Check installed packages health:
- yay \-Qstats
- .RE
- .PP
- .sp
- For a package called \fIname\fR:
- .sp
- .RS 4
- .ie n \{\
- \h'-04'\(bu\h'+03'\c
- .\}
- .el \{\
- .sp -1
- .IP \(bu 2.3
- .\}
- Search:
- yay \-Ss \fIname\fR
- .RE
- .sp
- .RS 4
- .ie n \{\
- \h'-04'\(bu\h'+03'\c
- .\}
- .el \{\
- .sp -1
- .IP \(bu 2.3
- .\}
- Install:
- yay \-S \fIname\fR
- .RE
- .sp
- .RS 4
- .ie n \{\
- \h'-04'\(bu\h'+03'\c
- .\}
- .el \{\
- .sp -1
- .IP \(bu 2.3
- .\}
- Install without confirmations:
- yay \-S \-\-noconfirm \fIname\fR
- .RE
- .sp
- .RS 4
- .ie n \{\
- \h'-04'\(bu\h'+03'\c
- .\}
- .el \{\
- .sp -1
- .IP \(bu 2.3
- .\}
- Get information about a package:
- yay \-Si \fIname\fR
- .RE
- .sp
- .RS 4
- .ie n \{\
- \h'-04'\(bu\h'+03'\c
- .\}
- .el \{\
- .sp -1
- .IP \(bu 2.3
- .\}
- Search and install using yogurt mode:
- yay \fIname\fR
- .RE
- .SH "SEE ALSO"
- .sp
- \fBmakepkg\fR(8)
- .sp
- \fBpacman\fR(8)
- .sp
- \fBpacman.conf\fR(5)
- .SH "AUTHORS"
- .sp
- Jguer <joaogg3@gmail\&.com>
|