Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into personal
Browse files Browse the repository at this point in the history
* origin/master:
  Fix (plugins debian and ubuntu): `apt-history list` using `zgrep` (ohmyzsh#5695)
  Precise Unix-based wording
  • Loading branch information
Hamish Downer committed Dec 13, 2016
2 parents 8ae5f7a + 26aae6b commit 7f887a9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -20,7 +20,7 @@ To learn more, visit [ohmyz.sh](http://ohmyz.sh) and follow [@ohmyzsh](https://t

__Disclaimer:__ _Oh My Zsh works best on macOS and Linux._

* Unix-based operating system (macOS or Linux)
* Unix-like operating system (macOS or Linux)
* [Zsh](http://www.zsh.org) should be installed (v4.3.9 or more recent). If not pre-installed (`zsh --version` to confirm), check the following instruction here: [Installing ZSH](https://github.com/robbyrussell/oh-my-zsh/wiki/Installing-ZSH)
* `curl` or `wget` should be installed
* `git` should be installed
Expand Down
2 changes: 1 addition & 1 deletion plugins/debian/debian.plugin.zsh
Expand Up @@ -192,7 +192,7 @@ apt-history () {
awk '{print $4"="$5}'
;;
list)
zcat $(ls -rt /var/log/dpkg*)
zgrep --no-filename '' $(ls -rt /var/log/dpkg*)
;;
*)
echo "Parameters:"
Expand Down
2 changes: 1 addition & 1 deletion plugins/ubuntu/ubuntu.plugin.zsh
Expand Up @@ -108,7 +108,7 @@ apt-history () {
awk '{print $4"="$5}'
;;
list)
zcat $(ls -rt /var/log/dpkg*)
zgrep --no-filename '' $(ls -rt /var/log/dpkg*)
;;
*)
echo "Parameters:"
Expand Down

0 comments on commit 7f887a9

Please sign in to comment.