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
48c9e77f
Commit
48c9e77f
authored
May 31, 2012
by
Robby Russell
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1140 from mappleconfusers/pull_req_debian
Enhancements for the Debian Plugin
parents
91b4758d
06734253
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
18 deletions
+21
-18
debian.plugin.zsh
plugins/debian/debian.plugin.zsh
+21
-18
No files found.
plugins/debian/debian.plugin.zsh
View file @
48c9e77f
...
@@ -40,20 +40,23 @@ alias ap='apt-cache policy'
...
@@ -40,20 +40,23 @@ alias ap='apt-cache policy'
# superuser operations ######################################################
# superuser operations ######################################################
if
[[
$use_sudo
-eq
1
]]
;
then
if
[[
$use_sudo
-eq
1
]]
;
then
# commands using sudo #######
# commands using sudo #######
alias
aac
=
"sudo
$apt_pref
autoclean"
alias
aac
=
'sudo $apt_pref autoclean'
alias
abd
=
"sudo
$apt_pref
build-dep"
alias
abd
=
'sudo $apt_pref build-dep'
alias
ac
=
"sudo
$apt_pref
clean"
alias
ac
=
'sudo $apt_pref clean'
alias
ad
=
"sudo
$apt_pref
update"
alias
ad
=
'sudo $apt_pref update'
alias
adg
=
"sudo
$apt_pref
update && sudo
$apt_pref
upgrade"
alias
adg
=
'sudo $apt_pref update && sudo $apt_pref upgrade'
alias
adu
=
"sudo
$apt_pref
update && sudo
$apt_pref
dist-upgrade"
alias
adu
=
'sudo $apt_pref update && sudo $apt_pref dist-upgrade'
alias
afu
=
'sudo apt-file update'
alias
afu
=
'sudo apt-file update'
alias
ag
=
"sudo
$apt_pref
upgrade"
alias
ag
=
'sudo $apt_pref upgrade'
alias
ai
=
"sudo
$apt_pref
install"
alias
ai
=
'sudo $apt_pref install'
alias
ap
=
"sudo
$apt_pref
purge"
# Install all packages given on the command line while using only the first word of each line:
alias
ar
=
"sudo
$apt_pref
remove"
# acs ... | ail
alias
ail
=
"sed -e 's/ */ /g' -e 's/ *//' | cut -s -d ' ' -f 1 | "
' xargs sudo $apt_pref install'
alias
ap
=
'sudo $apt_pref purge'
alias
ar
=
'sudo $apt_pref remove'
# apt-get only
# apt-get only
alias
ads
=
"sudo
$apt_pref
dselect-upgrade"
alias
ads
=
'sudo $apt_pref dselect-upgrade'
# Install all .deb files in the current directory.
# Install all .deb files in the current directory.
# Warning: you will need to put the glob in single quotes if you use:
# Warning: you will need to put the glob in single quotes if you use:
...
@@ -67,18 +70,18 @@ if [[ $use_sudo -eq 1 ]]; then
...
@@ -67,18 +70,18 @@ if [[ $use_sudo -eq 1 ]]; then
# commands using su #########
# commands using su #########
else
else
alias
aac
=
'su -ls
"'
"
$apt_pref
"
' autoclean"
root'
alias
aac
=
'su -ls
\'
$apt_pref
autoclean
\'
root
'
abd() {
abd() {
cmd="su -lc '
$apt_pref
build-dep
$@
' root"
cmd="su -lc '
$apt_pref
build-dep
$@
' root"
print "$cmd"
print "$cmd"
eval "$cmd"
eval "$cmd"
}
}
alias
ac
=
'su -ls
"'
"
$apt_pref
"
' clean"
root'
alias ac='
su
-ls
\'
$apt_pref
clean
\'
root
'
alias
ad
=
'su -lc
"'
"
$apt_pref
"
' update"
root'
alias ad='
su
-lc
\'
$apt_pref
update
\'
root
'
alias
adg
=
'su -lc
"'
"
$apt_pref
"
' update && aptitude safe-upgrade"
root'
alias adg='
su
-lc
\'
$apt_pref
update
&&
aptitude safe-upgrade
\'
root
'
alias
adu
=
'su -lc
"'
"
$apt_pref
"
' update && aptitude dist-upgrade"
root'
alias adu='
su
-lc
\'
$apt_pref
update
&&
aptitude dist-upgrade
\'
root
'
alias afu='
su
-lc
"apt-file update"
'
alias afu='
su
-lc
"apt-file update"
'
alias
ag
=
'su -lc
"'
"
$apt_pref
"
' safe-upgrade"
root'
alias ag='
su
-lc
\'
$apt_pref
safe-upgrade
\'
root
'
ai() {
ai() {
cmd="su -lc '
aptitude
-P
install
$@
' root"
cmd="su -lc '
aptitude
-P
install
$@
' root"
print "$cmd"
print "$cmd"
...
@@ -118,7 +121,7 @@ alias mydeb='time dpkg-buildpackage -rfakeroot -us -uc'
...
@@ -118,7 +121,7 @@ alias mydeb='time dpkg-buildpackage -rfakeroot -us -uc'
apt-copy
()
{
apt-copy
()
{
print
'#!/bin/sh'
"
\n
"
>
apt-copy.sh
print
'#!/bin/sh'
"
\n
"
>
apt-copy.sh
cmd
=
"
$apt_pref
install "
cmd
=
'$apt_pref install'
for
p
in
${
(f)
"
$(
aptitude search
-F
"%p"
--disable-columns
\~
i
)
"
}
;
{
for
p
in
${
(f)
"
$(
aptitude search
-F
"%p"
--disable-columns
\~
i
)
"
}
;
{
cmd
=
"
${
cmd
}
${
p
}
"
cmd
=
"
${
cmd
}
${
p
}
"
...
...
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