Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
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
b3427f0d
Unverified
Commit
b3427f0d
authored
Jul 19, 2023
by
majick
Committed by
Carlo Sala
Jul 19, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(ubuntu)!: rename `acse` alias to `acs`
Closes #11799 This commit reverses
5bfdd035
BREAKING CHANGE: reverting alias rename from `acs` to `acse`.
parent
8bdb5c95
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
README.md
plugins/debian/README.md
+1
-1
debian.plugin.zsh
plugins/debian/debian.plugin.zsh
+1
-1
README.md
plugins/ubuntu/README.md
+1
-1
ubuntu.plugin.zsh
plugins/ubuntu/ubuntu.plugin.zsh
+1
-1
No files found.
plugins/debian/README.md
View file @
b3427f0d
...
...
@@ -21,7 +21,7 @@ Set `$apt_pref` and `$apt_upgr` to whatever command you want (before sourcing Oh
| ------ | ---------------------------------------------------------------------- | ---------------------------------------------------------- |
|
`age`
|
`apt-get`
| Command line tool for handling packages |
|
`api`
|
`aptitude`
| Same functionality as
`apt-get`
, provides extra options |
|
`acs
e`
|
`apt-cache search`
| Command line tool for searching apt software package cache |
|
`acs
`
|
`apt-cache search`
| Command line tool for searching apt software package cache |
|
`aps`
|
`aptitude search`
| Searches installed packages using aptitude |
|
`as`
|
`aptitude -F '* %p -> %d \n(%v/%V)' --no-gui --disable-columns search`
| Print searched packages using a custom format |
|
`afs`
|
`apt-file search --regexp`
| Search file in packages |
...
...
plugins/debian/debian.plugin.zsh
View file @
b3427f0d
...
...
@@ -26,7 +26,7 @@ alias age='apt-get'
alias
api
=
'aptitude'
# Some self-explanatory aliases
alias
acs
e
=
"apt-cache search"
alias
acs
=
"apt-cache search"
alias
aps
=
'aptitude search'
alias
as
=
"aptitude -F '* %p -> %d
\n
(%v/%V)' --no-gui --disable-columns search"
...
...
plugins/ubuntu/README.md
View file @
b3427f0d
...
...
@@ -15,7 +15,7 @@ Commands that use `$APT` will use `apt` if installed or defer to `apt-get` other
| Alias | Command | Description |
|---------|--------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
| age |
`sudo $APT`
| Run apt-get with sudo |
| acs
e
|
`apt-cache search`
| Search the apt-cache with the specified criteria |
| acs
|
`apt-cache search`
| Search the apt-cache with the specified criteria |
| acsp |
`apt-cache showpkg`
| Shows information about the listed packages |
| acp |
`apt-cache policy`
| Display the package source priorities |
| afs |
`apt-file search --regexp`
| Perform a regular expression apt-file search |
...
...
plugins/ubuntu/ubuntu.plugin.zsh
View file @
b3427f0d
((
$+
commands[apt]
))
&&
APT
=
apt
||
APT
=
apt-get
alias
acs
e
=
'apt-cache search'
alias
acs
=
'apt-cache search'
alias
afs
=
'apt-file search --regexp'
...
...
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