diff options
author | Alan Pearce | 2014-01-25 13:54:02 +0000 |
---|---|---|
committer | Alan Pearce | 2014-01-25 13:54:02 +0000 |
commit | 0ecbf23895e730a8061f162d192e63cbc0922c80 (patch) | |
tree | e3cce1c1655d494a487827c3b27f65d5ebc1da8d /zsh | |
parent | 7b3bdc4b0be79e6d2f50e0e9ed45c1b3e430010c (diff) | |
download | dotfiles-0ecbf23895e730a8061f162d192e63cbc0922c80.tar.lz dotfiles-0ecbf23895e730a8061f162d192e63cbc0922c80.tar.zst dotfiles-0ecbf23895e730a8061f162d192e63cbc0922c80.zip |
Update FreeBSD update-check: portaudit -> pkg audit
Diffstat (limited to 'zsh')
-rwxr-xr-x | zsh/freebsd.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zsh/freebsd.zsh b/zsh/freebsd.zsh index 9b1e6a2..6ca0f8d 100755 --- a/zsh/freebsd.zsh +++ b/zsh/freebsd.zsh @@ -2,7 +2,7 @@ function update-check () { sudo portsnap update sudo portmaster -L --index-only | awk '/ [Nn]ew / { print substr($0,9,9999) }' - sudo portaudit -a -X 1 + sudo pkg audit pkg updating -d $( ls -ltr -D '%Y%m%d' /var/db/pkg | awk 'END{print $6}' ) } alias iotop="top -m io -o total" |