Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
9e4aba4c
Commit
9e4aba4c
authored
Oct 31, 2015
by
Daniel Hahler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
archlinux: use $+commands instead of 'command -v' in a subshell
parent
e44aa503
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
archlinux.plugin.zsh
plugins/archlinux/archlinux.plugin.zsh
+7
-7
No files found.
plugins/archlinux/archlinux.plugin.zsh
View file @
9e4aba4c
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
# Usage is also described at https://github.com/robbyrussell/oh-my-zsh/wiki/Plugins
# Usage is also described at https://github.com/robbyrussell/oh-my-zsh/wiki/Plugins
# Look for yaourt, and add some useful functions if we have it.
# Look for yaourt, and add some useful functions if we have it.
if
[[
-x
`
command
-v
yaourt
`
]]
;
then
if
((
$+
commands[yaourt]
))
;
then
upgrade
()
{
upgrade
()
{
yaourt
-Syu
yaourt
-Syu
}
}
...
@@ -21,11 +21,11 @@ if [[ -x `command -v yaourt` ]]; then
...
@@ -21,11 +21,11 @@ if [[ -x `command -v yaourt` ]]; then
alias
yalst
=
'yaourt -Qe'
# List installed packages, even those installed from AUR (they're tagged as "local")
alias
yalst
=
'yaourt -Qe'
# List installed packages, even those installed from AUR (they're tagged as "local")
alias
yaorph
=
'yaourt -Qtd'
# Remove orphans using yaourt
alias
yaorph
=
'yaourt -Qtd'
# Remove orphans using yaourt
# Additional yaourt alias examples
# Additional yaourt alias examples
if
[[
-x
`
command
-v
abs
`
&&
-x
`
command
-v
aur
`
]]
;
then
if
((
$+
commands[abs]
&&
$+
commands[aur]
))
;
then
alias
yaupd
=
'yaourt -Sy && sudo abs && sudo aur'
# Update and refresh the local package, ABS and AUR databases against repositories
alias
yaupd
=
'yaourt -Sy && sudo abs && sudo aur'
# Update and refresh the local package, ABS and AUR databases against repositories
elif
[[
-x
`
command
-v
abs
`
]]
;
then
elif
((
$+
commands[abs]
))
;
then
alias
yaupd
=
'yaourt -Sy && sudo abs'
# Update and refresh the local package and ABS databases against repositories
alias
yaupd
=
'yaourt -Sy && sudo abs'
# Update and refresh the local package and ABS databases against repositories
elif
[[
-x
`
command
-v
aur
`
]]
;
then
elif
((
$+
commands[aur]
))
;
then
alias
yaupd
=
'yaourt -Sy && sudo aur'
# Update and refresh the local package and AUR databases against repositories
alias
yaupd
=
'yaourt -Sy && sudo aur'
# Update and refresh the local package and AUR databases against repositories
else
else
alias
yaupd
=
'yaourt -Sy'
# Update and refresh the local package database against repositories
alias
yaupd
=
'yaourt -Sy'
# Update and refresh the local package database against repositories
...
@@ -49,11 +49,11 @@ alias pacreps='pacman -Ss' # Search for package(s) in the repositori
...
@@ -49,11 +49,11 @@ alias pacreps='pacman -Ss' # Search for package(s) in the repositori
alias
pacloc
=
'pacman -Qi'
# Display information about a given package in the local database
alias
pacloc
=
'pacman -Qi'
# Display information about a given package in the local database
alias
paclocs
=
'pacman -Qs'
# Search for package(s) in the local database
alias
paclocs
=
'pacman -Qs'
# Search for package(s) in the local database
# Additional pacman alias examples
# Additional pacman alias examples
if
[[
-x
`
command
-v
abs
`
&&
-x
`
command
-v
aur
`
]]
;
then
if
((
$+
commands[abs]
&&
$+
commands[aur]
))
;
then
alias
pacupd
=
'sudo pacman -Sy && sudo abs && sudo aur'
# Update and refresh the local package, ABS and AUR databases against repositories
alias
pacupd
=
'sudo pacman -Sy && sudo abs && sudo aur'
# Update and refresh the local package, ABS and AUR databases against repositories
elif
[[
-x
`
command
-v
abs
`
]]
;
then
elif
((
$+
commands[abs]
))
;
then
alias
pacupd
=
'sudo pacman -Sy && sudo abs'
# Update and refresh the local package and ABS databases against repositories
alias
pacupd
=
'sudo pacman -Sy && sudo abs'
# Update and refresh the local package and ABS databases against repositories
elif
[[
-x
`
command
-v
aur
`
]]
;
then
elif
((
$+
commands[aur]
))
;
then
alias
pacupd
=
'sudo pacman -Sy && sudo aur'
# Update and refresh the local package and AUR databases against repositories
alias
pacupd
=
'sudo pacman -Sy && sudo aur'
# Update and refresh the local package and AUR databases against repositories
else
else
alias
pacupd
=
'sudo pacman -Sy'
# Update and refresh the local package database against repositories
alias
pacupd
=
'sudo pacman -Sy'
# Update and refresh the local package database against repositories
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment